{"id":15985,"date":"2013-01-04T18:01:32","date_gmt":"2013-01-04T10:01:32","guid":{"rendered":"https:\/\/www.hongkiat.com\/blog\/?p=15985"},"modified":"2025-04-21T19:15:39","modified_gmt":"2025-04-21T11:15:39","slug":"html5-basic-elements","status":"publish","type":"post","link":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/","title":{"rendered":"HTML5 Basic Elements: Header, Nav, and Footer"},"content":{"rendered":"<p>HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a shim). These include tags like <code>header<\/code>, <code>nav<\/code>, and <code>footer<\/code>.<\/p>\n<p>You might have encountered these elements in our <a href=\"https:\/\/www.hongkiat.com\/blog\/tag\/html\/\">HTML5 tutorials<\/a>. Now, let\u2019s get a closer look at what these tags offer and how they enhance web structure and accessibility.<\/p>\n<p>This exploration is part of our series on exciting features in HTML5. If you\u2019re catching up, here are some previous tutorials you might find useful:<\/p>\n<ul>\n<li><a href=\"https:\/\/www.hongkiat.com\/blog\/html5-single-product-page\/\">HTML5 Tutorial: How to Build a Single Product Page<\/a><\/li>\n<li><a href=\"https:\/\/www.hongkiat.com\/blog\/html5-details-summary-tags\/\">HTML5: How To Use &lt;DETAILS&gt; And &lt;SUMMARY&gt; Tags<\/a><\/li>\n<\/ul>\n<h2 id=\"header\">Header Element<\/h2>\n<p>The new HTML5 elements are aptly named to reflect their functions. The <code>header<\/code> element, as <a href=\"https:\/\/dev.w3.org\/html5\/spec\/single-page.html#the-header-element\" rel=\"nofollow noopener\" target=\"_blank\">outlined in the HTML5 specification<\/a>, represents <em>\u201cA group of introductory or navigational aids.\u201d<\/em> This official source helps ensure accuracy in our understanding of its purpose, avoiding potential distortions that can occur with second-hand interpretations.<\/p>\n<p>From this definition, it\u2019s clear that the <code>header<\/code> element is versatile, extending beyond merely marking the top of a web page. It can also introduce sections within the content, serving as a prelude to the material that follows.<\/p>\n<p>Consider the example below, where the <code>header<\/code> element encompasses both the title and post metadata at the beginning of an article:<\/p>\n<pre>\n&lt;header&gt;\n  &lt;h1&gt;This is the Title of the Content&lt;\/h1&gt;\n  &lt;div class=\"post-meta\"&gt;\n    &lt;p&gt;By Author &lt;span class=\"category\"&gt;Filed in Web 2.0&lt;\/span&gt;&lt;\/p&gt;\n  &lt;\/div&gt;\n&lt;\/header&gt;\n&lt;article&gt;\n  &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id felis et augue sagittis euismod quis at sem. Nunc sit amet magna ac velit congue ultricies. Sed eros justo, lacinia in fringilla sollicitudin, congue id massa. Nunc dignissim bibendum nibh, sed dictum massa pharetra sit amet.&lt;\/p&gt;\n&lt;\/article&gt;\n<\/pre>\n<p>This structure shows how the <code>header<\/code> effectively sets the stage for the content that follows, encapsulating elements that introduce and contextualize the subsequent text.<\/p>\n<h2 id=\"nav\">Nav Element<\/h2>\n<p>The <code>nav<\/code> element represents <a href=\"https:\/\/www.hongkiat.com\/blog\/responsive-web-nav\/\"><strong>Navigation<\/strong><\/a>. As <a href=\"https:\/\/dev.w3.org\/html5\/spec\/single-page.html#the-nav-element\" rel=\"nofollow noopener\" target=\"_blank\">defined in the HTML5 specification<\/a>, it is \u201c<em>A section of a page that links to other pages or to parts within the page: a section with navigation links.<\/em>\u201c<\/p>\n<p>This element is typically associated with the primary navigation of a website, usually located at the top. However, its use is not restricted to this common placement.<\/p>\n<p>As per the official specification, the <code>nav<\/code> element can be employed anywhere on the page that requires navigational links. Consider the example below:<\/p>\n<pre>\n&lt;h4&gt;Table of Contents&lt;\/h4&gt;\n&lt;nav&gt;\n  &lt;ul&gt;\n    &lt;li&gt;&lt;a href=\"#overview\"&gt;Overview&lt;\/a&gt;&lt;\/li&gt;\n    &lt;li&gt;&lt;a href=\"#history\"&gt;History&lt;\/a&gt;&lt;\/li&gt;\n    &lt;li&gt;&lt;a href=\"#development\"&gt;Development&lt;\/a&gt;&lt;\/li&gt;\n  &lt;\/ul&gt;\n&lt;\/nav&gt;\n<\/pre>\n<p>In this scenario, the <code>nav<\/code> element surrounds a <strong>Table of Contents<\/strong> for the page, with links that navigate to specific sections within the same document.<\/p>\n<h2>Exploring the Footer Element<\/h2>\n<p>The <code>footer<\/code> element is another widely adopted feature in HTML5. While we typically think of a footer as the section at the very bottom of a webpage, the <a href=\"https:\/\/dev.w3.org\/html5\/spec\/single-page.html#the-footer-element\" rel=\"nofollow noopener\" target=\"_blank\">HTML5 specification describes it differently<\/a>; it states, <em>\u201cThe footer element represents a footer for its nearest ancestor sectioning content or sectioning root element. A footer typically contains information about its section such as who wrote it, links to related documents, copyright data, and the like.\u201d<\/em><\/p>\n<p>Although this may sound complex, it\u2019s quite straightforward. The footer is not just for the bottom of a webpage but can also conclude any section within a page. Here\u2019s how it might look:<\/p>\n<pre>\n&lt;div&gt;\n  &lt;header&gt;\n    &lt;h1&gt;This is the Title of the Content&lt;\/h1&gt;\n    &lt;div class=\"post-meta\"&gt;\n      &lt;p&gt;By Author &lt;span class=\"category\"&gt;Filed in Web 2.0&lt;\/span&gt;&lt;\/p&gt;\n    &lt;\/div&gt;\n  &lt;\/header&gt;\n  &lt;article&gt;\n    &lt;p&gt;Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus id\n    felis et augue sagittis euismod quis at sem. Nunc sit amet magna ac velit congue\n    ultricies. Sed eros justo, lacinia in fringilla sollicitudin, congue id massa.\n    Nunc dignissim bibendum nibh, sed dictum massa pharetra sit amet.&lt;\/p&gt;\n  &lt;\/article&gt;\n  &lt;footer&gt;\n    &lt;div class=\"tags\"&gt;\n      &lt;span class=\"tags-title\"&gt;Tags:&lt;\/span&gt; &lt;a href=\"#\" rel=\"tag\"&gt;Command Prompt&lt;\/a&gt;, &lt;a href=\"#\" rel=\"tag\"&gt;Compass&lt;\/a&gt;, &lt;a href=\"#\" rel=\"tag\"&gt;CSS&lt;\/a&gt;, &lt;a href=\"#\" rel=\"tag\"&gt;Sass&lt;\/a&gt;, &lt;a href=\"#\" rel=\"tag\"&gt;Terminal&lt;\/a&gt;\n    &lt;\/div&gt;\n    &lt;div class=\"facebook-like\"&gt;\n    &lt;\/div&gt;\n  &lt;\/footer&gt;\n&lt;\/div&gt;\n<\/pre>\n<p>In the above example, the footer extends the post content with tags and \u2018Likes\u2019, demonstrating its flexibility beyond a simple page ender.<\/p>\n<h2>Final Thoughts<\/h2>\n<p>The <code>header<\/code>, <code>nav<\/code>, and <code>footer<\/code> elements might not perform flashy tasks like some newer HTML5 features, but they play crucial roles in structuring web content meaningfully for both browsers and users. This approach aligns with the vision of the Web\u2019s inventor, <a href=\"https:\/\/en.wikipedia.org\/wiki\/Tim_Berners-Lee\" rel=\"nofollow noopener\" target=\"_blank\">Tim Berners-Lee<\/a>.<\/p>","protected":false},"excerpt":{"rendered":"<p>HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a shim). These include tags like header, nav, and footer. You might have encountered these elements in our HTML5 tutorials. Now, let\u2019s get a closer look at&hellip;<\/p>\n","protected":false},"author":113,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[352],"tags":[506,2016,511],"topic":[4520],"class_list":["entry-content","is-maxi"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v22.8 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>HTML5 Basic Elements: Header, Nav, and Footer - Hongkiat<\/title>\n<meta name=\"description\" content=\"HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML5 Basic Elements: Header, Nav, and Footer\" \/>\n<meta property=\"og:description\" content=\"HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/\" \/>\n<meta property=\"og:site_name\" content=\"Hongkiat\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/hongkiatcom\" \/>\n<meta property=\"article:published_time\" content=\"2013-01-04T10:01:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-04-21T11:15:39+00:00\" \/>\n<meta name=\"author\" content=\"Thoriq Firdaus\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@tfirdaus\" \/>\n<meta name=\"twitter:site\" content=\"@hongkiat\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Thoriq Firdaus\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/\"},\"author\":{\"name\":\"Thoriq Firdaus\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\"},\"headline\":\"HTML5 Basic Elements: Header, Nav, and Footer\",\"datePublished\":\"2013-01-04T10:01:32+00:00\",\"dateModified\":\"2025-04-21T11:15:39+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/\"},\"wordCount\":528,\"commentCount\":22,\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"keywords\":[\"HTML\",\"HTML5 \\\/ CSS3 Tutorials\",\"Web Developers\"],\"articleSection\":[\"Web Design\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/\",\"name\":\"HTML5 Basic Elements: Header, Nav, and Footer - Hongkiat\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\"},\"datePublished\":\"2013-01-04T10:01:32+00:00\",\"dateModified\":\"2025-04-21T11:15:39+00:00\",\"description\":\"HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/html5-basic-elements\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 Basic Elements: Header, Nav, and Footer\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"name\":\"Hongkiat\",\"description\":\"Tech and Design Tips\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#organization\",\"name\":\"Hongkiat.com\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"contentUrl\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/wp-content\\\/uploads\\\/hkdc-logo-rect-yoast.jpg\",\"width\":1200,\"height\":799,\"caption\":\"Hongkiat.com\"},\"image\":{\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/hongkiatcom\",\"https:\\\/\\\/x.com\\\/hongkiat\",\"https:\\\/\\\/www.pinterest.com\\\/hongkiat\\\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/#\\\/schema\\\/person\\\/e7948c7a175d211496331e4b6ce55807\",\"name\":\"Thoriq Firdaus\",\"description\":\"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.\",\"sameAs\":[\"https:\\\/\\\/thoriq.com\",\"https:\\\/\\\/x.com\\\/tfirdaus\"],\"jobTitle\":\"Web Developer\",\"url\":\"https:\\\/\\\/www.hongkiat.com\\\/blog\\\/author\\\/thoriq\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"HTML5 Basic Elements: Header, Nav, and Footer - Hongkiat","description":"HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a","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:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/","og_locale":"en_US","og_type":"article","og_title":"HTML5 Basic Elements: Header, Nav, and Footer","og_description":"HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a","og_url":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/","og_site_name":"Hongkiat","article_publisher":"https:\/\/www.facebook.com\/hongkiatcom","article_published_time":"2013-01-04T10:01:32+00:00","article_modified_time":"2025-04-21T11:15:39+00:00","author":"Thoriq Firdaus","twitter_card":"summary_large_image","twitter_creator":"@tfirdaus","twitter_site":"@hongkiat","twitter_misc":{"Written by":"Thoriq Firdaus","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/#article","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/"},"author":{"name":"Thoriq Firdaus","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807"},"headline":"HTML5 Basic Elements: Header, Nav, and Footer","datePublished":"2013-01-04T10:01:32+00:00","dateModified":"2025-04-21T11:15:39+00:00","mainEntityOfPage":{"@id":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/"},"wordCount":528,"commentCount":22,"publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"keywords":["HTML","HTML5 \/ CSS3 Tutorials","Web Developers"],"articleSection":["Web Design"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/","url":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/","name":"HTML5 Basic Elements: Header, Nav, and Footer - Hongkiat","isPartOf":{"@id":"https:\/\/www.hongkiat.com\/blog\/#website"},"datePublished":"2013-01-04T10:01:32+00:00","dateModified":"2025-04-21T11:15:39+00:00","description":"HTML5 is still evolving, yet some of its new elements are ready to use today and are supported in both current and older browsers (with the help of a","breadcrumb":{"@id":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.hongkiat.com\/blog\/html5-basic-elements\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.hongkiat.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML5 Basic Elements: Header, Nav, and Footer"}]},{"@type":"WebSite","@id":"https:\/\/www.hongkiat.com\/blog\/#website","url":"https:\/\/www.hongkiat.com\/blog\/","name":"Hongkiat","description":"Tech and Design Tips","publisher":{"@id":"https:\/\/www.hongkiat.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.hongkiat.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.hongkiat.com\/blog\/#organization","name":"Hongkiat.com","url":"https:\/\/www.hongkiat.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","contentUrl":"https:\/\/www.hongkiat.com\/blog\/wp-content\/uploads\/hkdc-logo-rect-yoast.jpg","width":1200,"height":799,"caption":"Hongkiat.com"},"image":{"@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/hongkiatcom","https:\/\/x.com\/hongkiat","https:\/\/www.pinterest.com\/hongkiat\/"]},{"@type":"Person","@id":"https:\/\/www.hongkiat.com\/blog\/#\/schema\/person\/e7948c7a175d211496331e4b6ce55807","name":"Thoriq Firdaus","description":"Thoriq is a writer for Hongkiat.com with a passion for web design and development. He is the author of Responsive Web Design by Examples, where he covered his best approaches in developing responsive websites quickly with a framework.","sameAs":["https:\/\/thoriq.com","https:\/\/x.com\/tfirdaus"],"jobTitle":"Web Developer","url":"https:\/\/www.hongkiat.com\/blog\/author\/thoriq\/"}]}},"jetpack_featured_media_url":"https:\/\/","jetpack_shortlink":"https:\/\/wp.me\/p4uxU-49P","jetpack_sharing_enabled":true,"_links":{"self":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/15985","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/users\/113"}],"replies":[{"embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/comments?post=15985"}],"version-history":[{"count":4,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/15985\/revisions"}],"predecessor-version":[{"id":73952,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/posts\/15985\/revisions\/73952"}],"wp:attachment":[{"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/media?parent=15985"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/categories?post=15985"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/tags?post=15985"},{"taxonomy":"topic","embeddable":true,"href":"https:\/\/www.hongkiat.com\/blog\/wp-json\/wp\/v2\/topic?post=15985"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}