{"id":17379,"date":"2020-05-24T23:57:03","date_gmt":"2020-05-25T06:57:03","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=17379"},"modified":"2020-12-29T13:12:41","modified_gmt":"2020-12-29T21:12:41","slug":"html-space","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-space\/","title":{"rendered":"Adding HTML Space Tags"},"content":{"rendered":"\n<p>When writing HTML, you\u2019ll notice additional spaces made when you press the spacebar do not appear when text is rendered in the browser.<br><\/p>\n\n\n\n<p>For example: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;p&gt;April is the cruelest month,&lt;\/p&gt;\n&lt;p&gt;April   is   the   cruelest   month,&lt;\/p&gt;<\/pre><\/div>\n\n\n\n<p>In the first &lt;p&gt; tag, there is only one space between each word. But in the second &lt;p&gt; tag, there are three spaces between each word. Regardless, each line renders on the web page in the same way:&nbsp;<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>April is the cruelest month,\nApril is the cruelest month,<\/pre><\/div>\n\n\n\n<p>In this article, we\u2019ll discuss three solutions to add extra space to your HTML code.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML Tags to Add Space<\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1020\" height=\"681\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/ryoji-iwata-tAz4APuJwvs-unsplash.jpg\" alt=\"Silhouette of a man walking in front of an illuminated wall with clock numbers.\" class=\"wp-image-17381\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/ryoji-iwata-tAz4APuJwvs-unsplash.jpg 1020w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/ryoji-iwata-tAz4APuJwvs-unsplash-768x513.jpg 768w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/ryoji-iwata-tAz4APuJwvs-unsplash-770x514.jpg 770w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/ryoji-iwata-tAz4APuJwvs-unsplash-20x13.jpg 20w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/ryoji-iwata-tAz4APuJwvs-unsplash-385x257.jpg 385w\" sizes=\"auto, (max-width: 1020px) 100vw, 1020px\" \/><figcaption> There are several ways to add space between your HTML text. <\/figcaption><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\">Non-Breaking Space HTML Character<\/h3>\n\n\n\n<p>To create space before, between, or after your text, you can use the non-breaking space, `&nbsp;` tag. Here\u2019s an example of how to implement this HTML character:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;p&gt;i carry your heart with me(i carry it in my heart)&lt;\/p&gt;\n&lt;p&gt;i carry your &amp;nbsp; heart &amp;nbsp; with me(i carry it in my heart)&lt;\/p&gt;<\/pre><\/div>\n\n\n\n<p>which renders:&nbsp;<\/p>\n\n\n\n<p>i carry your heart with me(i carry it in my heart)<\/p>\n\n\n\n<p>i carry your &nbsp; heart &nbsp; with me(i carry it in my heart)<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Preformatted Text Element<\/h3>\n\n\n\n<p>The &lt;pre&gt; tag is an HTML tag used to designate preformatted text. The &lt;pre&gt; tag preserves the spacing, line breaks, and displays the text in a fixed-width font. Let\u2019s look at an example: <\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>    &lt;p&gt;I was a child and she was a child,\n   In this kingdom by the sea,\nBut we loved with a love that was more than love\u2014\n   I and my Annabel Lee\u2014&lt;\/p&gt;\n\n    &lt;pre&gt;I was a child and she was a child,\n   In this kingdom by the sea,\nBut we loved with a love that was more than love\u2014\n   I and my Annabel Lee\u2014&lt;\/pre&gt;<\/pre><\/div>\n\n\n\n<p>which renders:<\/p>\n\n\n\n<p>I was a child and she was a child, In this kingdom by the sea, But we loved with a love that was more than love\u2014 I and my Annabel Lee\u2014<br><\/p>\n\n\n\n<p>I was a child and she was a child,<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;In this kingdom by the sea,<\/p>\n\n\n\n<p>But we loved with a love that was more than love\u2014<\/p>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;I and my Annabel Lee\u2014<br><\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Line Break<\/h3>\n\n\n\n<p>If you want to add space between lines of text, the line break tag, or &lt;br&gt; tag, would work best. Here\u2019s an example of how to implement the &lt;br&gt; tag:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;p&gt;so much depends\n     upon\n\n     a red wheel\n     barrow\n\n     glazed with rain\n     water\n\n     beside the white\n     chickens&lt;\/p&gt;\n\n&lt;p&gt;so much depends&lt;br&gt;\n     upon&lt;br&gt;\n     &lt;br&gt;\n     a red wheel&lt;br&gt;\n     barrow&lt;br&gt;\n     &lt;br&gt;\n     glazed with rain&lt;br&gt;\n     water&lt;br&gt;\n     &lt;br&gt;\n     beside the white&lt;br&gt;\n     chickens&lt;\/p&gt;<\/pre><\/div>\n\n\n\n<p>Which renders:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"676\" height=\"282\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/image.png\" alt=\"\" class=\"wp-image-17384\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/image.png 676w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/image-20x8.png 20w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/image-385x161.png 385w\" sizes=\"auto, (max-width: 676px) 100vw, 676px\" \/><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In conclusion, we learned three ways to add space using HTML tags. If you\u2019re new to HTML, check out our guide here: <a href=\"https:\/\/careerkarma.com\/blog\/learn-html\/\">Learn HTML: A Guide to Learning Hypertext Markup Language<\/a>, or read our article <a href=\"https:\/\/careerkarma.com\/blog\/how-long-does-it-take-to-learn-html\/\">How Long Does It Take to Learn HTML?<\/a><\/p>\n","protected":false},"excerpt":{"rendered":"When writing HTML, you\u2019ll notice additional spaces made when you press the spacebar do not appear when text is rendered in the browser. For example: &lt;p&gt;April is the cruelest month,&lt;\/p&gt; &lt;p&gt;April is the cruelest month,&lt;\/p&gt; In the first &lt;p&gt; tag, there is only one space between each word. But in the second &lt;p&gt; tag, there&hellip;","protected":false},"author":77,"featured_media":17380,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-17379","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-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.0 (Yoast SEO v27.0) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Adding HTML Space Tags: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"HTML will only read one space regardless of how many spaces you might type. We\u2019re sharing three solutions to create space in your HTML code.\" \/>\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\/html-space\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Adding HTML Space Tags\" \/>\n<meta property=\"og:description\" content=\"HTML will only read one space regardless of how many spaces you might type. We\u2019re sharing three solutions to create space in your HTML code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-space\/\" \/>\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=\"2020-05-25T06:57:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T21:12:41+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"653\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Christina Kopecky\" \/>\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=\"Christina Kopecky\" \/>\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\/html-space\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"Adding HTML Space Tags\",\"datePublished\":\"2020-05-25T06:57:03+00:00\",\"dateModified\":\"2020-12-29T21:12:41+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/\"},\"wordCount\":361,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-space\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/html-space\/\",\"name\":\"Adding HTML Space Tags: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg\",\"datePublished\":\"2020-05-25T06:57:03+00:00\",\"dateModified\":\"2020-12-29T21:12:41+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"HTML will only read one space regardless of how many spaces you might type. We\u2019re sharing three solutions to create space in your HTML code.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-space\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg\",\"width\":1020,\"height\":653,\"caption\":\"A colorful mechanical keyboard.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-space\/#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\":\"Adding HTML Space 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\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg\",\"caption\":\"Christina Kopecky\"},\"description\":\"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.\",\"sameAs\":[\"http:\/\/www.linkedin.com\/in\/cmvnk\"],\"url\":\"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Adding HTML Space Tags: A Step-By-Step Guide | Career Karma","description":"HTML will only read one space regardless of how many spaces you might type. We\u2019re sharing three solutions to create space in your HTML code.","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\/html-space\/","og_locale":"en_US","og_type":"article","og_title":"Adding HTML Space Tags","og_description":"HTML will only read one space regardless of how many spaces you might type. We\u2019re sharing three solutions to create space in your HTML code.","og_url":"https:\/\/careerkarma.com\/blog\/html-space\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-05-25T06:57:03+00:00","article_modified_time":"2020-12-29T21:12:41+00:00","og_image":[{"width":1020,"height":653,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg","type":"image\/jpeg"}],"author":"Christina Kopecky","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Christina Kopecky","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/html-space\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-space\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"Adding HTML Space Tags","datePublished":"2020-05-25T06:57:03+00:00","dateModified":"2020-12-29T21:12:41+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-space\/"},"wordCount":361,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-space\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-space\/","url":"https:\/\/careerkarma.com\/blog\/html-space\/","name":"Adding HTML Space Tags: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg","datePublished":"2020-05-25T06:57:03+00:00","dateModified":"2020-12-29T21:12:41+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"HTML will only read one space regardless of how many spaces you might type. We\u2019re sharing three solutions to create space in your HTML code.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-space\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-space\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-space\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/05\/paul-esch-laurent-oZMUrWFHOB4-unsplash.jpg","width":1020,"height":653,"caption":"A colorful mechanical keyboard."},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-space\/#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":"Adding HTML Space 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\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","caption":"Christina Kopecky"},"description":"Christina is an experienced technical writer, covering topics as diverse as Java, SQL, Python, and web development. She earned her Master of Music in flute performance from the University of Kansas and a bachelor's degree in music with minors in French and mass communication from Southeast Missouri State. Prior to joining the Career Karma team in June 2020, Christina was a teaching assistant, team lead, and section lead at Lambda School, where she led student groups, performed code and project reviews, and debugged problems for students. Christina's technical content is featured frequently in publications like Codecademy, Repl.it, and Educative.","sameAs":["http:\/\/www.linkedin.com\/in\/cmvnk"],"url":"https:\/\/careerkarma.com\/blog\/author\/christina-kopecky\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/17379","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\/77"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=17379"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/17379\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/17380"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=17379"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=17379"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=17379"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}