{"id":19023,"date":"2020-07-06T14:25:33","date_gmt":"2020-07-06T21:25:33","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19023"},"modified":"2022-07-20T08:38:25","modified_gmt":"2022-07-20T15:38:25","slug":"html-headers","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-headers\/","title":{"rendered":"What are Headers?"},"content":{"rendered":"\n<h2 class=\"wp-block-heading\">What are Headers in HTML?<br><\/h2>\n\n\n\n<p>The header element is a semantic element that was introduced in HTML5. It serves two primary purposes: as a page header and as a section header. In this article, we will cover page headers and section headers, discover the differences between each and show examples of both.&nbsp;<br><\/p>\n\n\n\n<p>Page and section headers have one primary thing in common: they both contain information that introduces the primary content of either the page or the section.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Page Header<\/h2>\n\n\n\n<p>On a web page, a page header\u2019s primary purpose is to introduce information about the website. This might include your company logo, a navigation bar that routes users to different parts of your site or a search bar. This content is usually the same across all the pages of your site. <br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n   &lt;meta charset=&quot;UTF-8&quot;&gt;\n   &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n   &lt;link href=&quot;https:\/\/fonts.googleapis.com\/css2?family=Satisfy&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;\n   &lt;title&gt;Headers&lt;\/title&gt;\n   &lt;style&gt;\n       * {\n           box-sizing: border-box;\n       }\n       body {\n           font-family: Arial, Helvetica, sans-serif;\n           font-size: large;\n           max-width: 1000px;\n           width: 100%;\n           margin: 0 auto;\n           border-left: 1px solid black;\n           border-right: 1px solid black;\n       }\n       header {\n           width: 100%;\n           display: flex;\n           align-items: center;\n       }\n       .logo {\n           display: flex;\n           align-items: center;\n           width: 35%;\n           padding: 10px 20px;\n           justify-content: space-between;\n           font-family: 'Satisfy', cursive;\n       }\n       nav {\n           width: 70%;\n       }\n       nav ul {\n           display: flex;\n           justify-content: space-around;\n           width: 100%;\n           list-style-type: none;\n       }\n       main {\n           padding: 20px;\n           text-align: center;\n           font-size:1.4rem;\n       }\n \n   &lt;\/style&gt;\n   &lt;script src=&quot;https:\/\/kit.fontawesome.com\/c52d9055c7.js&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;\/script&gt;\n \n&lt;\/head&gt;\n&lt;body&gt;\n       &lt;img src=&quot;http:\/\/www.placekitten.com\/1000\/305&quot; alt=&quot;kitty!&quot; \/&gt;\n       &lt;header&gt;\n           &lt;div class=&quot;logo&quot;&gt;\n               &lt;i class=&quot;fas fa-cat fa-3x&quot;&gt;&lt;\/i&gt;&lt;h1&gt;  Kit Kat Hospital&lt;\/h1&gt;\n           &lt;\/div&gt;\n           &lt;nav&gt;\n               &lt;ul&gt;\n                   &lt;li&gt;About Us&lt;\/li&gt;\n                   &lt;li&gt;Services&lt;\/li&gt;\n                   &lt;li&gt;Contact Us&lt;\/li&gt;\n                   &lt;li&gt;Patient Login&lt;\/li&gt;\n               &lt;\/ul&gt;\n           &lt;\/nav&gt;\n       &lt;\/header&gt;\n       &lt;main&gt;\n           The rest of the landing page will go here...\n       &lt;\/main&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">Section Headers<\/h2>\n\n\n\n<p>A section header\u2019s primary purpose is to introduce a section of content. We would use a section header to give the title of a blog post and its author\u2019s name.<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot;&gt;\n&lt;head&gt;\n   &lt;meta charset=&quot;UTF-8&quot;&gt;\n   &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n   &lt;link href=&quot;https:\/\/fonts.googleapis.com\/css2?family=Satisfy&amp;display=swap&quot; rel=&quot;stylesheet&quot;&gt;\n   &lt;title&gt;Document&lt;\/title&gt;\n   &lt;style&gt;\n       * {\n           box-sizing: border-box;\n       }\n       body {\n           font-family: Arial, Helvetica, sans-serif;\n           font-size: large;\n           max-width: 1000px;\n           width: 100%;\n           margin: 0 auto;\n           border-left: 1px solid black;\n           border-right: 1px solid black;\n       }\n       .first {\n           width: 500px;\n           border: 3px solid black;\n           padding: 20px\n       }\n       header {\n           width: 100%;\n           display: flex;\n           align-items: center;\n       }\n       .logo {\n           display: flex;\n           align-items: center;\n           width: 35%;\n           padding: 10px 20px;\n           justify-content: space-between;\n           font-family: 'Satisfy', cursive;\n       }\n       nav {\n           width: 70%;\n       }\n       nav ul {\n           display: flex;\n           justify-content: space-around;\n           width: 100%;\n           list-style-type: none;\n       }\n       main {\n           padding: 20px;\n           text-align: center;\n           font-size:1.4rem;\n       }\n       .section-header {\n           flex-direction: column;\n           text-align: left;\n       }\n \n       .section-header h2 {\n           align-self: flex-start;\n       }\n       .title {\n           display: flex;\n           align-items: center;\n           width: 100%;\n           padding: 20px;\n          \n       }\n       .title h2 {\n           margin-bottom: 0;\n \n       }\n       .title h4 {\n           margin-left: 10px;\n           margin-bottom: 0;\n           color: rgb(34, 33, 33);\n           font-weight: lighter;\n       }\n       .title p {\n           align-self: flex-start;\n       }\n       .author {\n           margin: 0;\n           font-size: 1rem;\n           align-self: flex-start;\n           padding: 0px 20px;\n       }\n       .section-content {\n           text-align: left;\n           text-indent: 25px;\n           padding: 20px;\n           font-size: 1.2rem;\n           line-height: 1.5;\n           height: 200px;\n           width: 75%;\n           text-overflow:ellipsis;\n       }\n \n   &lt;\/style&gt;\n   &lt;script src=&quot;https:\/\/kit.fontawesome.com\/c52d9055c7.js&quot; crossorigin=&quot;anonymous&quot;&gt;&lt;\/script&gt;\n \n&lt;\/head&gt;\n&lt;body&gt;\n       &lt;img src=&quot;http:\/\/www.placekitten.com\/1000\/305&quot; alt=&quot;kitty!&quot; \/&gt;\n       &lt;header&gt;\n           &lt;div class=&quot;logo&quot;&gt;\n               &lt;i class=&quot;fas fa-cat fa-3x&quot;&gt;&lt;\/i&gt;&lt;h1&gt;  Kit Kat Hospital&lt;\/h1&gt;\n           &lt;\/div&gt;\n           &lt;nav&gt;\n               &lt;ul&gt;\n                   &lt;li&gt;About Us&lt;\/li&gt;\n                   &lt;li&gt;Services&lt;\/li&gt;\n                   &lt;li&gt;Contact Us&lt;\/li&gt;\n                   &lt;li&gt;Patient Login&lt;\/li&gt;\n               &lt;\/ul&gt;\n           &lt;\/nav&gt;\n       &lt;\/header&gt;\n       &lt;main&gt;\n \n           &lt;section&gt;\n               &lt;article&gt;\n \n               &lt;header class=&quot;section-header&quot;&gt;\n                   &lt;div class=&quot;title&quot;&gt;\n                       &lt;h2&gt;Meows Decoded: &lt;\/h2&gt;\n                       &lt;h4&gt;What your kit cat if trying to tell you&lt;\/h4&gt;\n                   &lt;\/div&gt;\n                   &lt;p class=&quot;author&quot;&gt;By Cat N. Mouse&lt;\/p&gt;\n               &lt;\/header&gt;\n               &lt;p class=&quot;section-content&quot;&gt;\n                   Cat lorem ipsum dolor sit amet, pee on walls it smells like breakfast for fall asleep on the washing machine. Drool destroy couch as revenge. Lick the plastic bag. Humans,humans, humans oh how much they love us felines we are the center of attention they feed, they clean touch my tail, i shred your hand purrrr why use post when this sofa is here, yet Gate keepers of hell, but skid on floor, crash into wall for cat dog hate mouse eat string barf pillow no baths hate everything yet meow and walk away.&lt;\/p&gt;\n    &lt;\/article&gt;\n \n  &lt;\/section&gt;\n&lt;\/main&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>As illustrated in the code editor, you can have multiple headers per HTML document. The only requirement is that headers cannot be nested inside other headers. Best practice is that you have a header element that is intended for the whole page and then a header element representing each section element.&nbsp;<br><\/p>\n\n\n\n<p>Just remember that the header is something that introduces a page or a section and is one of the many semantic elements that were introduced in HTML5.&nbsp;<\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/What-Are-Headers?lite=true\"><\/iframe>\n<br>\n<br>\n","protected":false},"excerpt":{"rendered":"What are Headers in HTML? The header element is a semantic element that was introduced in HTML5. It serves two primary purposes: as a page header and as a section header. In this article, we will cover page headers and section headers, discover the differences between each and show examples of both.&nbsp; Page and section&hellip;","protected":false},"author":77,"featured_media":18771,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-19023","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>What are Headers? | Career Karma<\/title>\n<meta name=\"description\" content=\"Headers are used in HTML to introduce some sort of content, either navigational aids, search bars, heading elements or something else entirely. Let\u2019s take a look at what they are and how to use them.\" \/>\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-headers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What are Headers?\" \/>\n<meta property=\"og:description\" content=\"Headers are used in HTML to introduce some sort of content, either navigational aids, search bars, heading elements or something else entirely. Let\u2019s take a look at what they are and how to use them.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-headers\/\" \/>\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-07-06T21:25:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-07-20T15:38:25+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.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=\"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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"What are Headers?\",\"datePublished\":\"2020-07-06T21:25:33+00:00\",\"dateModified\":\"2022-07-20T15:38:25+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/\"},\"wordCount\":251,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-headers\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/html-headers\/\",\"name\":\"What are Headers? | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg\",\"datePublished\":\"2020-07-06T21:25:33+00:00\",\"dateModified\":\"2022-07-20T15:38:25+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Headers are used in HTML to introduce some sort of content, either navigational aids, search bars, heading elements or something else entirely. Let\u2019s take a look at what they are and how to use them.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-headers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"Using header and divs while composing markup in HTML\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-headers\/#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\":\"What are Headers?\"}]},{\"@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":"What are Headers? | Career Karma","description":"Headers are used in HTML to introduce some sort of content, either navigational aids, search bars, heading elements or something else entirely. Let\u2019s take a look at what they are and how to use them.","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-headers\/","og_locale":"en_US","og_type":"article","og_title":"What are Headers?","og_description":"Headers are used in HTML to introduce some sort of content, either navigational aids, search bars, heading elements or something else entirely. Let\u2019s take a look at what they are and how to use them.","og_url":"https:\/\/careerkarma.com\/blog\/html-headers\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-06T21:25:33+00:00","article_modified_time":"2022-07-20T15:38:25+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-headers\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"What are Headers?","datePublished":"2020-07-06T21:25:33+00:00","dateModified":"2022-07-20T15:38:25+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-headers\/"},"wordCount":251,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-headers\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-headers\/","url":"https:\/\/careerkarma.com\/blog\/html-headers\/","name":"What are Headers? | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg","datePublished":"2020-07-06T21:25:33+00:00","dateModified":"2022-07-20T15:38:25+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Headers are used in HTML to introduce some sort of content, either navigational aids, search bars, heading elements or something else entirely. Let\u2019s take a look at what they are and how to use them.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-headers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/markus-spiske-MI9-PY5cyNs-unsplash.jpg","width":1020,"height":680,"caption":"Using header and divs while composing markup in HTML"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-headers\/#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":"What are Headers?"}]},{"@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\/19023","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=19023"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19023\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18771"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19023"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19023"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19023"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}