{"id":29375,"date":"2021-02-25T20:38:37","date_gmt":"2021-02-26T04:38:37","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=29375"},"modified":"2022-07-20T08:38:18","modified_gmt":"2022-07-20T15:38:18","slug":"how-to-use-index-dot-html","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/","title":{"rendered":"How to Use index.html"},"content":{"rendered":"\n<p>When you are building web pages in a <a href=\"https:\/\/careerkarma.com\/blog\/virtual-studio-code-vs-sublime\/\">code editor<\/a> like Visual Studio Code, Sublime Text, you need to create an index.html because this page has an important job to do. Creating an index.html page first is considered a best practice in web development.<br><\/p>\n\n\n\n<p>So, what is the index.html page, and why does it matter? This article teaches you about index.html and why you should always create this page when you are building a website.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">What is index.html?<\/h3>\n\n\n\n<p>Index.html is the first HTML page you create as you\u2019re building a website. HTML ( HyperText Markup Language) helps give structure to your text and other elements on a webpage. The index.html page is the default page a website visitor sees if no other page is specified, which is often referred to as the \u201chomepage\u201d.<br><\/p>\n\n\n\n<p>For example, if you type in an URL such as https:\/\/careerkarma.com, you have not specified any particular page the server should deliver to the client (computer or mobile phone). In many cases, what you will see then is the default page, or index.html page.&nbsp;<br><\/p>\n\n\n\n<p>If you know the exact address of the page you want to view, such as https:\/\/careerkarma.com\/blog, then the server will direct you to that page instead of the index.html page.<br><\/p>\n\n\n\n<p>index.html is easily recognized on most servers as the default page, which is why many developers choose to go with index.html as the default page name.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">How to Make an index.html Page<\/h3>\n\n\n\n<p>By now you understand what an index.html page is and why it\u2019s important. Let\u2019s take a look at exactly how we can make an index.html page by using Visual Studio Code (or VS Code), a code editor.<br><\/p>\n\n\n\n<p>If you don\u2019t have VS Code installed, check out this helpful <a href=\"https:\/\/code.visualstudio.com\/learn\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">guide on getting started with Visual Studio Code<\/a>.<br><\/p>\n\n\n\n<p>Let\u2019s start with creating a new file.<br><\/p>\n\n\n\n<p>From the main VS Code dashboard, create a new file.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/licTiEBmIMxExBhZtfw9YTBAqwfQ1_vORZ_ReXfVnrIWegBtj2m5Svtj0fIl9JXzPng02gesCvS0-Cwti1lBAemjWJzYASzjtdqGChoa8VYzEv09J46mF5I3Ws9yzkRMwnES1mqb\" alt=\"\"\/><\/figure>\n\n\n\n<p>You\u2019ll then be shown a blank code file with a name like \u201cUntitled\u201d or \u201cUntitled-1\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/bGun5gj9H1t2Y-EhacVXop8bF5DV_0Wv31IjzNwmTsYDnJe5plPfGVfm4qw1xc_ZCW2nYoRia21vuLsfTi1Ds8mfsGa22clRIy8IID7OBTnU4MAJA7nmtGhPAZ5B8C21M333sI25\" alt=\"\"\/><\/figure>\n\n\n\n<p>Next, go to \u201cFile\u201d, \u201cSave as\u201d, and save your file name as \u201cindex\u201d with a file type of \u201chtml\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh5.googleusercontent.com\/MIdZ8fvgUu3uqWOMYEwfi1j_mEM_APbkJRuXE3AqbuWolo54iD9Zh9TSZURG6wn-4xkz0OzMWRqOiN7noyAJXUra9S95IFnStq17x1wPanf8OXArtLMSAAKNJe8n1UzsYFyq2gck\" alt=\"\"\/><\/figure>\n\n\n\n<p>Now you will see \u201cindex.html\u201d as the name of your file.&nbsp;<br><\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/eYhBOZbMSzMfuxSFt-nwEb2_f4IwWiRa3xJ77WtQlvgSZ-ad069xXjnOd4Si7xWKLpe9HNJGyGkPc6n4CSrGtfZrBtnzs9icbEcN6nZ7YJKovjsizoLiaD168LH7J6O7LPPiAIkC\" alt=\"\"\/><\/figure>\n\n\n\n<p>By default, there are a few elements that you should have in your index.html file. These include HTML tags such as &lt;html&gt;, &lt;head&gt;, and &lt;body&gt;. You should also declare the document type using \u201cDOCTYPE HTML\u201d.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/D_Wbe5aldnjGaq7tHl0GEo0OQ_xkYz-whtSn9qALkXAeeeIzxABPEikEE9Rt6YYR_0I5IbdeUqxM1hvkFr1dw72WHHNTpY6yjJrzzoVoV3yn6JxCfukxCQWFf4dfmRbt4e84baFz\" alt=\"\"\/><\/figure>\n\n\n\n<p>You have your index.html page. Now you can create additional files to bring your website to life.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">Conclusion<\/h3>\n\n\n\n<p>The index.html page is an important part of your website. This is the page that servers deliver to clients (devices) when users do not specify a different page.<br><\/p>\n\n\n\n<p>It\u2019s easy to set up an index.html page in your code editor. Remember that you can create other HTML pages in addition to index.html, such as about.html or contact.html.<br><\/p>\n\n\n\n<p>By including an index.html page in your web development projects, you will help your site visitors have a well-designed site experience and help protect the files in your directory from vulnerabilities.<\/p>\n","protected":false},"excerpt":{"rendered":"When you are building web pages in a code editor like Visual Studio Code, Sublime Text, you need to create an index.html because this page has an important job to do. Creating an index.html page first is considered a best practice in web development. So, what is the index.html page, and why does it matter?&hellip;","protected":false},"author":112,"featured_media":29376,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-29375","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.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to use index.html | Career Karma<\/title>\n<meta name=\"description\" content=\"The index.html page is an important part of your website. This page functions as the default or homepage when site visitors type in your website&#039;s URL.\" \/>\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\/how-to-use-index-dot-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Use index.html\" \/>\n<meta property=\"og:description\" content=\"The index.html page is an important part of your website. This page functions as the default or homepage when site visitors type in your website&#039;s URL.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/\" \/>\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=\"2021-02-26T04:38:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:38:18+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/webdesign-3411373_1280.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"680\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Karen Schwarze\" \/>\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=\"Karen Schwarze\" \/>\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\\\/how-to-use-index-dot-html\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/\"},\"author\":{\"name\":\"Karen Schwarze\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ef4d43031318a0eeb598a44661f304cc\"},\"headline\":\"How to Use index.html\",\"datePublished\":\"2021-02-26T04:38:37+00:00\",\"dateModified\":\"2022-07-20T15:38:18+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/\"},\"wordCount\":545,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/webdesign-3411373_1280.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/\",\"name\":\"How to use index.html | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/webdesign-3411373_1280.jpg\",\"datePublished\":\"2021-02-26T04:38:37+00:00\",\"dateModified\":\"2022-07-20T15:38:18+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ef4d43031318a0eeb598a44661f304cc\"},\"description\":\"The index.html page is an important part of your website. This page functions as the default or homepage when site visitors type in your website's URL.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/webdesign-3411373_1280.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/02\\\/webdesign-3411373_1280.jpg\",\"width\":1020,\"height\":680},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/how-to-use-index-dot-html\\\/#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\":\"How to Use index.html\"}]},{\"@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\\\/ef4d43031318a0eeb598a44661f304cc\",\"name\":\"Karen Schwarze\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Karen_Schwarze-150x150.jpg\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Karen_Schwarze-150x150.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/Karen_Schwarze-150x150.jpg\",\"caption\":\"Karen Schwarze\"},\"description\":\"A former educator and edtech marketer, Karen is passionate about computer science education. She\u2019s particularly fascinated by the connections between coding languages and English language\\\/literature structures. This led her to build an edtech app where users create Python programs by manipulating literary devices like similes and metaphors. When she\u2019s not writing, Karen enjoys watching comedy and reading books about history.\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/author\\\/karen-schwarze\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How to use index.html | Career Karma","description":"The index.html page is an important part of your website. This page functions as the default or homepage when site visitors type in your website's URL.","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\/how-to-use-index-dot-html\/","og_locale":"en_US","og_type":"article","og_title":"How to Use index.html","og_description":"The index.html page is an important part of your website. This page functions as the default or homepage when site visitors type in your website's URL.","og_url":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2021-02-26T04:38:37+00:00","article_modified_time":"2022-07-20T15:38:18+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/webdesign-3411373_1280.jpg","type":"image\/jpeg"}],"author":"Karen Schwarze","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Karen Schwarze","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/"},"author":{"name":"Karen Schwarze","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ef4d43031318a0eeb598a44661f304cc"},"headline":"How to Use index.html","datePublished":"2021-02-26T04:38:37+00:00","dateModified":"2022-07-20T15:38:18+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/"},"wordCount":545,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/webdesign-3411373_1280.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/","url":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/","name":"How to use index.html | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/webdesign-3411373_1280.jpg","datePublished":"2021-02-26T04:38:37+00:00","dateModified":"2022-07-20T15:38:18+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ef4d43031318a0eeb598a44661f304cc"},"description":"The index.html page is an important part of your website. This page functions as the default or homepage when site visitors type in your website's URL.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/webdesign-3411373_1280.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/02\/webdesign-3411373_1280.jpg","width":1020,"height":680},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/how-to-use-index-dot-html\/#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":"How to Use index.html"}]},{"@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\/ef4d43031318a0eeb598a44661f304cc","name":"Karen Schwarze","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Karen_Schwarze-150x150.jpg","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Karen_Schwarze-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2021\/01\/Karen_Schwarze-150x150.jpg","caption":"Karen Schwarze"},"description":"A former educator and edtech marketer, Karen is passionate about computer science education. She\u2019s particularly fascinated by the connections between coding languages and English language\/literature structures. This led her to build an edtech app where users create Python programs by manipulating literary devices like similes and metaphors. When she\u2019s not writing, Karen enjoys watching comedy and reading books about history.","url":"https:\/\/careerkarma.com\/blog\/author\/karen-schwarze\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29375","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\/112"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=29375"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/29375\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/29376"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=29375"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=29375"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=29375"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}