{"id":18619,"date":"2020-06-29T15:04:24","date_gmt":"2020-06-29T22:04:24","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=18619"},"modified":"2022-08-14T10:45:33","modified_gmt":"2022-08-14T17:45:33","slug":"link-css-to-html","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/","title":{"rendered":"How to Link CSS to HTML to Make Markup More Readable"},"content":{"rendered":"\n<p>As coders who have just <a href=\"https:\/\/careerkarma.com\/blog\/learn-css\/\">learned CSS<\/a>, we first start to incorporate CSS to our web pages as inline-styling. We use the style attribute to inject the CSS directly on our HTML element:\u00a0<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n\t&lt;title&gt;Inline Style&lt;\/title&gt;\n&lt;\/head&gt;\n&lt;body&gt;\t\n&lt;h1 style=\"color:blue;text-align:center;\"&gt;Star Wars&lt;\/h1&gt;\n&lt;h4 style=\"color:red;text-align:center;\"&gt;Return of the Jedi&lt;\/h4&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>As we move to more complicated sites, we move to incorporating our CSS as Internal CSS. This is where we write all of our CSS in between <code>&lt;style&gt;<\/code> tags in the <code>&lt;head&gt; <\/code>section of the HTML document:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;!DOCTYPE html&gt;\n&lt;html&gt;\n&lt;head&gt;\n\t&lt;title&gt;Internal CSS&lt;\/title&gt;\n\t&lt;style&gt;\n\t\th1, h4 {\n\ttext-align: center;\n}\nh1 {\n\tcolor: blue;\n}\nh4 {\ncolor: red;\n}\n&lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\t\n&lt;h1&gt;Star Wars&lt;\/h1&gt;\n&lt;h4&gt;Return of the Jedi&lt;\/h4&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>This cleans up our HTML nicely. However, what if we had 500 lines of CSS? This file would get hard to read pretty quickly. However, we have the ability to create external stylesheets and then link them to our HTML file!&nbsp;&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-setup\">The Setup:<\/h2>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"562\" height=\"310\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.23.13-PM.jpg\" alt=\"\" class=\"wp-image-18620\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.23.13-PM.jpg 562w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.23.13-PM-20x11.jpg 20w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.23.13-PM-385x212.png 385w\" sizes=\"auto, (max-width: 562px) 100vw, 562px\" \/><figcaption><strong>Project folder should look like this when you add index.css file<\/strong><\/figcaption><\/figure>\n\n\n\n<ol class=\"wp-block-list\"><li>In your main project folder where your <strong>index.html<\/strong> file is, create a new file called <strong>index.css. <\/strong>The index.css file is going to hold all of the CSS for our index.html file. I like to name my CSS files after the HTML files they style to keep things organized, but you can certainly name them whatever you\u2019d like as long as you know which files they are styling.&nbsp;<\/li><li>If you have CSS in between the <code>&lt;style&gt;<\/code> tags in the <code>&lt;head&gt;<\/code> of your HTML file, cut and paste the CSS code only (no tags) into the corresponding CSS file.&nbsp;<\/li><li>In the <code>&lt;head&gt;<\/code> of your HTML file,&nbsp; you are going to create a &lt;link&gt; tag that points to your CSS file:&nbsp;<\/li><\/ol>\n\n\n\n<p>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<code>&lt;link rel=\"stylesheet\" type=\"text\/css\" href=\".\/index.css\"&gt;<\/code><\/p>\n\n\n\n<p>\tThe link is made up of three parts:<\/p>\n\n\n\n<ol class=\"wp-block-list\"><li><strong>The rel attribute:<\/strong> This tells us there is going to be a relationship between this file and another file, and this link will tell us what that relationship is.&nbsp;<\/li><li><strong>The type attribute:<\/strong> Describes the type of relationship the linked file has to the HTML file.&nbsp;<\/li><li><strong>The href attribute:<\/strong> The relative path to the file from where the HTML file is \u2013 the file\u2019s location.<\/li><\/ol>\n\n\n\n<figure class=\"wp-block-image\"><img loading=\"lazy\" decoding=\"async\" width=\"1000\" height=\"556\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.49.00-PM.png\" alt=\"\" class=\"wp-image-18621\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.49.00-PM.png 1000w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.49.00-PM-768x427.png 768w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.49.00-PM-770x428.png 770w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.49.00-PM-20x11.png 20w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/Screen-Shot-2020-06-09-at-11.49.00-PM-385x214.png 385w\" sizes=\"auto, (max-width: 1000px) 100vw, 1000px\" \/><figcaption><strong>The HTML file links to the corresponding CSS file by adding a &lt;link&gt; element.&nbsp;<\/strong><br><\/figcaption><\/figure>\n\n\n\n<p>Remember that even though we are separating the CSS file from the HTML file, the cascading nature of CSS still reigns supreme. This means if you have multiple CSS files, you will need to:<\/p>\n\n\n\n<p>1. Have a &lt;link&gt; pointing to each individual CSS file.<\/p>\n\n\n\n<p>2. Make sure those files are in the order you need them to be so the proper styling shows. If they are not in the proper order, the styling may not work.<\/p>\n\n\n\n<p>That\u2019s all there is to it. You are now well on your way to creating external stylesheets for your project! <\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/How-to-Link-CSS-and-HTML?lite=true\"><\/iframe>\n<br>\n<br>\n","protected":false},"excerpt":{"rendered":"As coders who have just learned CSS, we first start to incorporate CSS to our web pages as inline-styling. We use the style attribute to inject the CSS directly on our HTML element:\u00a0 &lt;!DOCTYPE html&gt; &lt;html&gt; &lt;head&gt; &lt;title&gt;Inline Style&lt;\/title&gt; &lt;\/head&gt; &lt;body&gt; &lt;h1 style=\"color:blue;text-align:center;\"&gt;Star Wars&lt;\/h1&gt; &lt;h4 style=\"color:red;text-align:center;\"&gt;Return of the Jedi&lt;\/h4&gt; &lt;\/body&gt; &lt;\/html&gt; As we move to&hellip;","protected":false},"author":77,"featured_media":18622,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17287],"tags":[],"class_list":{"0":"post-18619","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-css"},"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>How to Link CSS to HTML to Make Markup More Readable | Career Karma<\/title>\n<meta name=\"description\" content=\"Using style tags in the head of HTML can clutter up code. Learn how to move CSS to a separate file to make your code more readable.\" \/>\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\/link-css-to-html\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Link CSS to HTML to Make Markup More Readable\" \/>\n<meta property=\"og:description\" content=\"Using style tags in the head of HTML can clutter up code. Learn how to move CSS to a separate file to make your code more readable.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/link-css-to-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=\"2020-06-29T22:04:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-14T17:45:33+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1000\" \/>\n\t<meta property=\"og:image:height\" content=\"647\" \/>\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\/link-css-to-html\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"How to Link CSS to HTML to Make Markup More Readable\",\"datePublished\":\"2020-06-29T22:04:24+00:00\",\"dateModified\":\"2022-08-14T17:45:33+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/\"},\"wordCount\":456,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg\",\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/\",\"name\":\"How to Link CSS to HTML to Make Markup More Readable | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg\",\"datePublished\":\"2020-06-29T22:04:24+00:00\",\"dateModified\":\"2022-08-14T17:45:33+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Using style tags in the head of HTML can clutter up code. Learn how to move CSS to a separate file to make your code more readable.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg\",\"width\":1000,\"height\":647},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/link-css-to-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 Link CSS to HTML to Make Markup More Readable\"}]},{\"@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":"How to Link CSS to HTML to Make Markup More Readable | Career Karma","description":"Using style tags in the head of HTML can clutter up code. Learn how to move CSS to a separate file to make your code more readable.","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\/link-css-to-html\/","og_locale":"en_US","og_type":"article","og_title":"How to Link CSS to HTML to Make Markup More Readable","og_description":"Using style tags in the head of HTML can clutter up code. Learn how to move CSS to a separate file to make your code more readable.","og_url":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-06-29T22:04:24+00:00","article_modified_time":"2022-08-14T17:45:33+00:00","og_image":[{"width":1000,"height":647,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.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\/link-css-to-html\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"How to Link CSS to HTML to Make Markup More Readable","datePublished":"2020-06-29T22:04:24+00:00","dateModified":"2022-08-14T17:45:33+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/"},"wordCount":456,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg","articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/link-css-to-html\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/","url":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/","name":"How to Link CSS to HTML to Make Markup More Readable | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg","datePublished":"2020-06-29T22:04:24+00:00","dateModified":"2022-08-14T17:45:33+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Using style tags in the head of HTML can clutter up code. Learn how to move CSS to a separate file to make your code more readable.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/link-css-to-html\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/link-css-to-html\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/photo-of-an-abandoned-workspace-3359003.jpg","width":1000,"height":647},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/link-css-to-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 Link CSS to HTML to Make Markup More Readable"}]},{"@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\/18619","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=18619"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/18619\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18622"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=18619"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=18619"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=18619"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}