{"id":4521,"date":"2019-07-19T23:59:46","date_gmt":"2019-07-19T23:59:46","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=4521"},"modified":"2022-07-20T08:38:34","modified_gmt":"2022-07-20T15:38:34","slug":"basic-html-tags","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/","title":{"rendered":"The Basic HTML Tags"},"content":{"rendered":"\n<p>An understanding of the basic HTML tags is the foundational skill in web development. If a website is a house, each HTML tag is like a brick giving it shape. Just as you can\u2019t understand how to build a house without understanding how to put up a structure, you can\u2019t understand how to build good websites without understanding HTML.&nbsp;<br><\/p>\n\n\n\n<p>With web development being one of the <a href=\"https:\/\/careerkarma.com\/blog\/best-tech-jobs\/\">best tech jobs of 2022<\/a>, mastering the basic HTML tags is an ideal place to begin learning.\u00a0<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-are-html-tags\"><strong>What Are HTML Tags?&nbsp;<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"667\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/photo-1482745637430-91c0bbcea3e1.jpg\" alt=\" HTML Code displayed on a computer. \" class=\"wp-image-4522\"\/><figcaption>Pictured: a website being born.&nbsp;<\/figcaption><\/figure>\n\n\n\n<p>You\u2019re reading this article on a website. Have you ever wondered how the computer knows what content to display and how to display it? What is it that makes some text bold, italicized, and some contain a link to another webpage?&nbsp;<br><\/p>\n\n\n\n<p>Part of the answer is HTML tags. Once upon a time, HTML was the majority of code on the Internet. While that\u2019s changed, HTML is still a significant part of getting content on the web.&nbsp;<br><\/p>\n\n\n\n<p>HTML is a markup language. After a person writes content, they\u2019ll need to mark it up with HTML to do things like distinguish the title from the paragraphs. Most of this is done by inserting tags throughout the content.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-what-are-the-basic-html-tags\"><strong>What Are The Basic HTML Tags?<\/strong><\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"667\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/07\/photo-1492551557933-34265f7af79e.jpg\" alt=\"Man coding on a laptop. \" class=\"wp-image-4523\"\/><figcaption>HTML tags are a great place to start learning web development.&nbsp;<\/figcaption><\/figure>\n\n\n\n<p>An HTML tag is a special keyword surrounded by the sharp brackets &lt; and &gt;, such as: &lt;body&gt;. Tags almost always come in pairs, with one beginning tag and one ending tag. The difference is that ending tags have an extra slash inside the brackets:&nbsp;<br><\/p>\n\n\n\n<p>&lt;example&gt;The first tag is the beginning and the second tag is the end. &lt;\/example&gt;<br><\/p>\n\n\n\n<p>Here are<strong> 10 common HTML tags<\/strong> that any web developer should know about, and they\u2019re especially important for <a href=\"https:\/\/careerkarma.com\/blog\/html-for-beginners\/\">those just starting out with learning HTML<\/a>.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-1-html-html\">1. <strong>&lt;html&gt;&lt;\/html&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>This is the root element tag. It designates that everything between these brackets contains HTML code.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-2-head-head\"><strong>2. &lt;head&gt;&lt;\/head&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>This tag distinguishes the head of the web page from the content. This is where you put Javascript code or give \u2018meta\u2019 information about the web site.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-3-title-title\">3. <strong>&lt;title&gt;&lt;\/title&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>Have you noticed that browser tabs contain text that gives you an overview of the website? That text is written as the site\u2019s title with this tag.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-4-body-body\">4. <strong>&lt;body&gt;&lt;\/body&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>The body tag specifies the actual content of the website.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-5-h1-h1\"><strong>5. &lt;h1&gt;&lt;\/h1&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>This is a heading tag, which creates a title by making text bigger and making it bold. There are six heading tags: h1, h2, h3, h4, h5, h6, in descending order of size.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-6-p-p\">6. <strong>&lt;p&gt;&lt;\/p&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>This tag specifies that a given section is supposed to be its own paragraph. Browsers usually insert blank spaces between paragraphs, making the text easier to read.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-7-a-a\">7. <strong>&lt;a&gt;&lt;\/a&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>This tag let\u2019s us create a link with its \u2018href\u2019 attribute, like so:&nbsp;<\/p>\n\n\n\n<p>&lt;a href=www.somewebsite.com&gt;Click here&lt;\/a&gt;.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-8-img-img\"><strong>8. &lt;img&gt;&lt;\/img&gt;&nbsp;<\/strong><\/h2>\n\n\n\n<p>The \u2018image\u2019 tag is how you insert images into a web page.&nbsp;<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-9-div-div\">9. <strong>&lt;div&gt;&lt;\/div&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>Div tags group multiple pieces of content into a single container, which allows you to do things like apply separate styling to just that content<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-10-span-span\"><strong>10. &lt;span&gt;&lt;\/span&gt;<\/strong>&nbsp;<\/h2>\n\n\n\n<p>Span is like a smaller version of div, used to style or interact with inline content. You could add just a couple of words to a particular class (&lt;span class=\u2019endorsement\u2019&gt;Text&lt;\/span&gt;) which, again, is great for styling and making the content more responsive.<br><\/p>\n\n\n\n<p>This should be more than enough to get you started building fantastic websites!&nbsp;<\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/HTML-Tags?lite=true\"><\/iframe>\n<br>\n<br>\n","protected":false},"excerpt":{"rendered":"An understanding of the basic HTML tags is the foundational skill in web development. If a website is a house, each HTML tag is like a brick giving it shape. Just as you can\u2019t understand how to build a house without understanding how to put up a structure, you can\u2019t understand how to build good&hellip;","protected":false},"author":35,"featured_media":1947,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[11714],"class_list":{"0":"post-4521","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-html","8":"tag-html"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"HTML","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>The Basic HTML Tags | Career Karma<\/title>\n<meta name=\"description\" content=\"Start your journey into web development by learning the basics of HTML tags. These will be the foundation of your ability to build great websites.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/careerkarma.com\/blog\/basic-html-tags\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"The Basic HTML Tags\" \/>\n<meta property=\"og:description\" content=\"Start your journey into web development by learning the basics of HTML tags. These will be the foundation of your ability to build great websites.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/basic-html-tags\/\" \/>\n<meta property=\"og:site_name\" content=\"Career Karma\" \/>\n<meta property=\"article:publisher\" content=\"http:\/\/facebook.com\/careerkarmaapp\" \/>\n<meta property=\"article:published_time\" content=\"2019-07-19T23:59:46+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:38:34+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Trent Fowler\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@career_karma\" \/>\n<meta name=\"twitter:site\" content=\"@career_karma\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Trent Fowler\" \/>\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:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/\"},\"author\":{\"name\":\"Trent Fowler\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/768fb9a38d2c1b146588954736f79aba\"},\"headline\":\"The Basic HTML Tags\",\"datePublished\":\"2019-07-19T23:59:46+00:00\",\"dateModified\":\"2022-07-20T15:38:34+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/\"},\"wordCount\":678,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/florian-olivo-1169465-unsplash-1.jpg\",\"keywords\":[\"HTML\"],\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/\",\"name\":\"The Basic HTML Tags | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/florian-olivo-1169465-unsplash-1.jpg\",\"datePublished\":\"2019-07-19T23:59:46+00:00\",\"dateModified\":\"2022-07-20T15:38:34+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/768fb9a38d2c1b146588954736f79aba\"},\"description\":\"Start your journey into web development by learning the basics of HTML tags. These will be the foundation of your ability to build great websites.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/florian-olivo-1169465-unsplash-1.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/05\\\/florian-olivo-1169465-unsplash-1.jpg\",\"width\":1200,\"height\":800,\"caption\":\"html codes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/basic-html-tags\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML\",\"item\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"The Basic HTML Tags\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/768fb9a38d2c1b146588954736f79aba\",\"name\":\"Trent Fowler\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2019\\\/11\\\/Screen-Shot-2019-11-16-at-3.07.12-PM.png\",\"caption\":\"Trent Fowler\"},\"description\":\"Trent Fowler is a data scientist and writer with an interest in machine learning, blockchain technologies, and futurism.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/trent-fowler\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"The Basic HTML Tags | Career Karma","description":"Start your journey into web development by learning the basics of HTML tags. These will be the foundation of your ability to build great websites.","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:\/\/careerkarma.com\/blog\/basic-html-tags\/","og_locale":"en_US","og_type":"article","og_title":"The Basic HTML Tags","og_description":"Start your journey into web development by learning the basics of HTML tags. These will be the foundation of your ability to build great websites.","og_url":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2019-07-19T23:59:46+00:00","article_modified_time":"2022-07-20T15:38:34+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash-1.jpg","type":"image\/jpeg"}],"author":"Trent Fowler","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Trent Fowler","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/"},"author":{"name":"Trent Fowler","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba"},"headline":"The Basic HTML Tags","datePublished":"2019-07-19T23:59:46+00:00","dateModified":"2022-07-20T15:38:34+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/"},"wordCount":678,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash-1.jpg","keywords":["HTML"],"articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/basic-html-tags\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/","url":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/","name":"The Basic HTML Tags | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash-1.jpg","datePublished":"2019-07-19T23:59:46+00:00","dateModified":"2022-07-20T15:38:34+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba"},"description":"Start your journey into web development by learning the basics of HTML tags. These will be the foundation of your ability to build great websites.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/basic-html-tags\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash-1.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash-1.jpg","width":1200,"height":800,"caption":"html codes"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/basic-html-tags\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"HTML","item":"https:\/\/careerkarma.com\/blog\/html\/"},{"@type":"ListItem","position":3,"name":"The Basic HTML Tags"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/768fb9a38d2c1b146588954736f79aba","name":"Trent Fowler","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/11\/Screen-Shot-2019-11-16-at-3.07.12-PM.png","caption":"Trent Fowler"},"description":"Trent Fowler is a data scientist and writer with an interest in machine learning, blockchain technologies, and futurism.","url":"https:\/\/careerkarma.com\/blog\/author\/trent-fowler\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/4521","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/users\/35"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=4521"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/4521\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/1947"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=4521"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=4521"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=4521"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}