{"id":1606,"date":"2021-02-27T10:43:00","date_gmt":"2021-02-27T08:43:00","guid":{"rendered":"https:\/\/html-online.com\/articles\/?p=1606"},"modified":"2024-09-13T11:40:30","modified_gmt":"2024-09-13T08:40:30","slug":"quick-website-coding-tips","status":"publish","type":"post","link":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/","title":{"rendered":"Quick Website Coding Guide"},"content":{"rendered":"<h3>What Tools to Use And What Rules to Follow?<\/h3>\n<p><strong>Knowing HTML and CSS, at least at a basic level, is necessary for almost everyone who deals with websites. The code language comes in handy for developers, content managers who run company websites, authors, and <a href=\"\/\">editors<\/a> who design articles and promotional pages.<\/strong><\/p>\n<p><!--more--><\/p>\n<p class=\"aligncenter\"><a href=\"\/\" target=\"_blank\" rel=\"noopener\"><img decoding=\"async\" src=\"\/articles\/wp-content\/uploads\/2015\/11\/html-online-editor-converter-free-online-tool.png\" alt=\"html-online-editor-converter-free-online-tool\"><\/a><\/p>\n<p>There are plenty of online services where you can get basic skills for website creation using <a href=\"\/articles\/category\/html\/\">HTML<\/a> and <a href=\"\/articles\/category\/css\/\">CSS<\/a>. And also advanced techniques of animation, creating interfaces, adaptive and cross-browser layout.<\/p>\n<p>Developing websites is great, but doing it fast is even cooler! Here&#8217;s how to learn how to do it.<\/p>\n<p>A good site developer not only knows how to code a page in HTML and CSS but also how to do it fast. The faster the speed &#8211; the better. Let&#8217;s look at the <strong>basic principles of fast coding<\/strong> and some recommendations that will make the work easier and more enjoyable.<\/p>\n<h2>#1. Analyze the layout before you start working on it<\/h2>\n<p>As soon as you receive a layout &#8211; do not rush to make it up immediately. First reflect upon it, even try to imagine your future page in HTML formatting, and then write the code. This is important &#8211; otherwise, you might have to redo it, because you will get the wrong nesting of tags and other errors. And the speed of your work will slow down because of it.<\/p>\n<p class=\"aligncenter\"><img decoding=\"async\" src=\"\/articles\/wp-content\/uploads\/2021\/06\/1-user-xperience.jpg\" alt=\"user xperience\"><\/p>\n<p><em><strong>Practice!<\/strong> With experience, you will learn to imagine in advance how to make a layout better. This will seriously speed up your work.<\/em><\/p>\n<h2>#2. Learn the blind typing method<\/h2>\n<p>It seems trivial, but to write code fast &#8211; you need to be able to type quickly, without distracting from the layout and appearance of the site in the browser. <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/www.typingclub.com\/\">Blind typing<\/a> helps with this &#8211; when you&#8217;re not looking at the keyboard, your fingers type the code themselves using muscle memory.<\/p>\n<h2>#3. Choose and set up a code editor<\/h2>\n<p>You can write HTML code in any code editor, even Notepad. It will work, it can be edited and improved, but working in <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/notepad-plus-plus.org\/\">Notepad<\/a> is long and inefficient. There are now a huge number of different editors and IDEs in which it is much more convenient to write code.<\/p>\n<p class=\"aligncenter\"><a href=\"\/\"><img decoding=\"async\" alt=\"text editor screenshot\" src=\"\/articles\/wp-content\/uploads\/2021\/03\/html-editor.jpg\"><\/a><\/p>\n<p>It doesn&#8217;t make sense for a <a href=\"\/articles\/how-to-be-both-web-designer-and-developer\/\">developer<\/a> to install a full-fledged and paid IDE &#8211; the code he writes is not that complex. But such code editors differ from Notepad in a host of features: there is a built-in explorer, code formatting control, <a href=\"\/articles\/online-syntax-highlighter\/\">syntax highlighting<\/a>, plugins, the work with Git. All of this makes development faster and more convenient.<\/p>\n<p><em>One of the most popular desktop editors for coders is <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/code.visualstudio.com\/\">Visual Studio Code<\/a>. It&#8217;s free from Microsoft and is updated and improved very often. Its counterparts are Sublime Text 3, Atom, Brackets. Which one you choose is up to you.<\/em><\/p>\n<h2>#4. Plugins in the code editor<\/h2>\n<p>The plugins that are already there (or can be added) in the code editor are an important part of any coder&#8217;s work. There are many of them, but use only those that will really speed up your work.<\/p>\n<h3>Emmet<\/h3>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/emmet.io\/\">Emmet<\/a> allows you to use code abbreviations instead of writing whole constructs. For example, just type the letters &#8220;bgc&#8221; and press the Tab key, and then the code will automatically expand into <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/html-css-js.com\/css\/generator\/background\/\">background-color<\/a>. By the way, this plugin is already built into VS Code.<\/p>\n<h3>eCSStractor<\/h3>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/packagecontrol.io\/packages\/eCSStractor\">This plugin<\/a> allows you to select a part of HTML code that already has classes written, click a button, and insert the ready-made selectors into your CSS code. Just imagine: you no longer need to write a single selector in CSS, just the properties you need.<\/p>\n<h3>AutoFileName<\/h3>\n<p><a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/packagecontrol.io\/packages\/AutoFileName\">It helps you<\/a> quickly find files in the project directory directly by adding the file path to the src attribute.<\/p>\n<h2>#5. Ready-made code fragments<\/h2>\n<p>No programmer likes to write extra code, and coders are no exception. Sooner or later you notice that this or that element is repeated from project to project. It is extremely useful to put it in a ready snippet of code.<\/p>\n<p>Snippets can be implemented directly in the editor or you can use <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/gist.github.com\/starred\">Github Gist<\/a>, a kind of repository for code. And with the Gist plugin, you can easily get the content of ready snippets from there.<\/p>\n<p><em>Using and reusing code is a great way to speed up your layout and avoid unnecessary typos.<\/em><\/p>\n<h2>#6. Using BEM<\/h2>\n<p>Many novice coders are intimidated by the acronym <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/getbem.com\/\">BEM<\/a> (<strong>block-element-modifier<\/strong>). It seems complicated to sit and figure out where there is a block and where there is an element.<\/p>\n<p class=\"aligncenter\"><img decoding=\"async\" src=\"\/articles\/wp-content\/uploads\/2021\/08\/web-accessibility.jpg\" alt=\"web accessibility\"><\/p>\n<p>In fact, this is not the case. Practice, make a few BEM layouts. Your brain will get used to it and start automatically making correct judgments about HTML element entities, their naming, and so on. You will no longer need to think of class names (which often wastes time) or how elements will depend on each other.<\/p>\n<p><em>All in all, it&#8217;s worthwhile to bug out and learn BEM first, so that you can do things faster and more correctly later. By the way, 90% of jobs require you to know BEM.<\/em><\/p>\n<h2>#7. Preprocessors<\/h2>\n<p>Preprocessors are add-ons for languages we are accustomed to (<a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/html-css-js.com\/css\/editor\/\">such as CSS<\/a>) that add a lot of new features.<\/p>\n<p>The well known <a rel=\"nofollow noopener\" target=\"_blank\" href=\"https:\/\/sass-lang.com\/\">Sass preprocessor<\/a> allows special file imports (which help with organizing code), nesting in selectors (you don&#8217;t have to write the selector on a new line every time), mixins (essentially, functions that allow you to reduce code and take out similar implementations), variables, and so on.<\/p>\n<p><em>Now it is impossible to imagine a professional coder who does not use preprocessors. They speed up the workflow several times and allow for better structuring of the project.<\/em><\/p>\n<h2>#8. Project Assemblers<\/h2>\n<p>You need project builders to do things that developers do not want to do by hand, things that take a lot of time.<\/p>\n<p class=\"aligncenter\"><img decoding=\"async\" src=\"\/articles\/wp-content\/uploads\/2017\/03\/circle-diagram.jpg\" alt=\"circle diagram\"><\/p>\n<p>For example, Gulp can automatically compile all the files into one, arrange the prefixes to support different browsers, create SVG sprites, and much more. But the most useful thing is the ability to automatically refresh the browser page when you save the code.<\/p>\n<p><em>If you use Gulp, you no longer have to switch to the browser manually and hit refresh every time you render an item. It&#8217;s a great time saver for the coder.<\/em><\/p>\n<h2>Conclusion<\/h2>\n<p>Here are the main methods and <a href=\"\/articles\/category\/tools\/\">tools<\/a> that can help you speed up your website coding. All these tools, plugins, code editors are great. But the most important thing is your professionalism.<\/p>\n<p class=\"aligncenter\"><img decoding=\"async\" src=\"\/articles\/wp-content\/uploads\/2021\/06\/5-ease-of-use.jpg\" alt=\"ease of use\"><\/p>\n<p>Practice, constant learning, and self-control are very important. As time goes by, you will be able to make the same layout in 5-6 hours instead of 2-3 days. And this will be a testament to the fact that you make it up quickly.<\/p>\n<p>The same applies to writing student papers. The constant practice contributes to the development of writing abilities that will bring high grades in the future. And best legit essay writing services will be a good help in this business.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>What Tools to Use And What Rules to Follow? Knowing HTML and CSS, at least at a basic level, is necessary for almost everyone who deals with websites. The code language comes in handy for developers, content managers who run company websites, authors, and editors who design articles and promotional pages.<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1],"tags":[],"class_list":["post-1606","post","type-post","status-publish","format-standard","hentry","category-articles"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.7 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How To Code a Website Quickly - Effective Rules And Tools<\/title>\n<meta name=\"description\" content=\"Are you good at coding, but working on a layout takes a lot of time? Learn to make code a website faster, and what you need to do.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How To Code a Website Quickly - Effective Rules And Tools\" \/>\n<meta property=\"og:description\" content=\"Are you good at coding, but working on a layout takes a lot of time? Learn to make code a website faster, and what you need to do.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\" \/>\n<meta property=\"og:site_name\" content=\"HTML Online\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/htmlcoding\/\" \/>\n<meta property=\"article:published_time\" content=\"2021-02-27T08:43:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-09-13T08:40:30+00:00\" \/>\n<meta name=\"author\" content=\"HTML Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"HTML Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\"},\"author\":{\"name\":\"HTML Editor\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d\"},\"headline\":\"Quick Website Coding Guide\",\"datePublished\":\"2021-02-27T08:43:00+00:00\",\"dateModified\":\"2024-09-13T08:40:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\"},\"wordCount\":1163,\"publisher\":{\"@id\":\"https:\/\/html-online.com\/articles\/#organization\"},\"articleSection\":[\"Articles\"],\"inLanguage\":\"en-GB\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\",\"url\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\",\"name\":\"How To Code a Website Quickly - Effective Rules And Tools\",\"isPartOf\":{\"@id\":\"https:\/\/html-online.com\/articles\/#website\"},\"datePublished\":\"2021-02-27T08:43:00+00:00\",\"dateModified\":\"2024-09-13T08:40:30+00:00\",\"description\":\"Are you good at coding, but working on a layout takes a lot of time? Learn to make code a website faster, and what you need to do.\",\"breadcrumb\":{\"@id\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/html-online.com\/articles\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Quick Website Coding Guide\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/html-online.com\/articles\/#website\",\"url\":\"https:\/\/html-online.com\/articles\/\",\"name\":\"HTML Online Articles\",\"description\":\"Tips, tricks, tutorials\u2026\",\"publisher\":{\"@id\":\"https:\/\/html-online.com\/articles\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/html-online.com\/articles\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/html-online.com\/articles\/#organization\",\"name\":\"HTML Online\",\"url\":\"https:\/\/html-online.com\/articles\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg\",\"contentUrl\":\"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg\",\"width\":350,\"height\":350,\"caption\":\"HTML Online\"},\"image\":{\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/htmlcoding\/\",\"https:\/\/www.linkedin.com\/in\/ferencdenes\/\",\"https:\/\/www.youtube.com\/channel\/UCn38Jw1sJzbjVHO95Zp0Sww\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d\",\"name\":\"HTML Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/html-online.com\/articles\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g\",\"caption\":\"HTML Editor\"},\"description\":\"In 2013, while wrestling with a mountain of client articles and an uncooperative CMS, I decided enough was enough. So, I created an online HTML editor purely out of necessity (and mild frustration). What began as a tool for my own sanity quickly evolved into a gift for the world\u2014or at least for anyone trying to avoid breaking their website's code. Since then, I've shared my tech notes on my blog, which serves as both a handy reference and a digital diary of the adventures and misadventures of a coder.\",\"sameAs\":[\"https:\/\/www.linkedin.com\/in\/ferencdenes\/\",\"https:\/\/www.youtube.com\/@htmlg\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How To Code a Website Quickly - Effective Rules And Tools","description":"Are you good at coding, but working on a layout takes a lot of time? Learn to make code a website faster, and what you need to do.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/","og_locale":"en_GB","og_type":"article","og_title":"How To Code a Website Quickly - Effective Rules And Tools","og_description":"Are you good at coding, but working on a layout takes a lot of time? Learn to make code a website faster, and what you need to do.","og_url":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/","og_site_name":"HTML Online","article_publisher":"https:\/\/www.facebook.com\/htmlcoding\/","article_published_time":"2021-02-27T08:43:00+00:00","article_modified_time":"2024-09-13T08:40:30+00:00","author":"HTML Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"HTML Editor","Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/#article","isPartOf":{"@id":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/"},"author":{"name":"HTML Editor","@id":"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d"},"headline":"Quick Website Coding Guide","datePublished":"2021-02-27T08:43:00+00:00","dateModified":"2024-09-13T08:40:30+00:00","mainEntityOfPage":{"@id":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/"},"wordCount":1163,"publisher":{"@id":"https:\/\/html-online.com\/articles\/#organization"},"articleSection":["Articles"],"inLanguage":"en-GB"},{"@type":"WebPage","@id":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/","url":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/","name":"How To Code a Website Quickly - Effective Rules And Tools","isPartOf":{"@id":"https:\/\/html-online.com\/articles\/#website"},"datePublished":"2021-02-27T08:43:00+00:00","dateModified":"2024-09-13T08:40:30+00:00","description":"Are you good at coding, but working on a layout takes a lot of time? Learn to make code a website faster, and what you need to do.","breadcrumb":{"@id":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/html-online.com\/articles\/quick-website-coding-tips\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/html-online.com\/articles\/quick-website-coding-tips\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/html-online.com\/articles\/"},{"@type":"ListItem","position":2,"name":"Quick Website Coding Guide"}]},{"@type":"WebSite","@id":"https:\/\/html-online.com\/articles\/#website","url":"https:\/\/html-online.com\/articles\/","name":"HTML Online Articles","description":"Tips, tricks, tutorials\u2026","publisher":{"@id":"https:\/\/html-online.com\/articles\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/html-online.com\/articles\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/html-online.com\/articles\/#organization","name":"HTML Online","url":"https:\/\/html-online.com\/articles\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/","url":"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg","contentUrl":"https:\/\/html-online.com\/articles\/wp-content\/uploads\/2022\/06\/logo.jpg","width":350,"height":350,"caption":"HTML Online"},"image":{"@id":"https:\/\/html-online.com\/articles\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/htmlcoding\/","https:\/\/www.linkedin.com\/in\/ferencdenes\/","https:\/\/www.youtube.com\/channel\/UCn38Jw1sJzbjVHO95Zp0Sww"]},{"@type":"Person","@id":"https:\/\/html-online.com\/articles\/#\/schema\/person\/019f9afa07f209153df0fecfc90b8c1d","name":"HTML Editor","image":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/html-online.com\/articles\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7c1d8f5e7f1dc3e261766a96ac50c6a907fa5c236e87ab73379c57c9114e92cd?s=96&d=mm&r=g","caption":"HTML Editor"},"description":"In 2013, while wrestling with a mountain of client articles and an uncooperative CMS, I decided enough was enough. So, I created an online HTML editor purely out of necessity (and mild frustration). What began as a tool for my own sanity quickly evolved into a gift for the world\u2014or at least for anyone trying to avoid breaking their website's code. Since then, I've shared my tech notes on my blog, which serves as both a handy reference and a digital diary of the adventures and misadventures of a coder.","sameAs":["https:\/\/www.linkedin.com\/in\/ferencdenes\/","https:\/\/www.youtube.com\/@htmlg"]}]}},"_links":{"self":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts\/1606","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/comments?post=1606"}],"version-history":[{"count":2,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts\/1606\/revisions"}],"predecessor-version":[{"id":2113,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/posts\/1606\/revisions\/2113"}],"wp:attachment":[{"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/media?parent=1606"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/categories?post=1606"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/html-online.com\/articles\/wp-json\/wp\/v2\/tags?post=1606"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}