{"id":18851,"date":"2020-07-01T11:28:26","date_gmt":"2020-07-01T18:28:26","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=18851"},"modified":"2020-12-28T23:42:50","modified_gmt":"2020-12-29T07:42:50","slug":"css-span","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/css-span\/","title":{"rendered":"CSS Span"},"content":{"rendered":"\n<p><code>&lt;span&gt;<\/code> elements are a generic HTML element similar to <code>&lt;div&gt;<\/code>. If you recall, divs are a generic container primarily used for the layout of a webpage and take up as much space as they can because they are a <strong>block<\/strong> element.&nbsp;<br><\/p>\n\n\n\n<p>Spans are an <strong>inline<\/strong> element. They only take up as much space as needed and are primarily used for emphasizing something.&nbsp;<br><\/p>\n\n\n\n<p>Here is a visual representation of each:<\/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;title&gt;Divs vs Spans&lt;\/title&gt;\n   &lt;style&gt;\n       * {\n               box-sizing: border-box;\n               font-size: 1.4rem;\n               font-family: monospace;\n           }\n           .div-style {\n               background: purple;\n               color: blanchedalmond;\n               height: auto;\n               padding: 20px;\n               margin: 10px;\n           }\n           .span-style {\n               background: orange;\n               color: black;\n           }\n           .highlight {\n               font-style: italic;\n               display: inline-block;\n               height: 100px;\n               width: 75%;\n               display: flex;\n               align-items: center;\n               background:mediumslateblue;\n               color: ivory;\n           }\n           h3 {\n               text-decoration: underline;           }\n   &lt;\/style&gt;\n&lt;\/head&gt;\n&lt;body&gt;\n   &lt;h3&gt;Divs&lt;\/h3&gt;\n       &lt;div class=&quot;div-style&quot;&gt;I'm a div&lt;\/div&gt;\n       &lt;div class=&quot;div-style&quot;&gt;I take up as much space as I can&lt;\/div&gt;\n   &lt;h3&gt;Spans&lt;\/h3&gt;\n       &lt;span class=&quot;span-style&quot;&gt;I'm a span&lt;\/span&gt;\n       &lt;span class=&quot;span-style&quot;&gt;\nI only take up exactly as much space as I need.\n&lt;\/span&gt;\n       &lt;span class=&quot;span-style&quot;&gt;I emphasize text a lot.&lt;\/span&gt;\n \n       &lt;div class=&quot;div-style&quot;&gt;\n           &lt;span class=&quot;span-style&quot;&gt;Spans can go inside divs...&lt;\/span&gt;\n           &lt;p&gt;... have different styling than other text...&lt;\/p&gt;\n           &lt;span class=&quot;span-style&quot;\n               &gt;...and are inline elements that can't have height or width\n               manipulated unless you set\n               &lt;span class=&quot;highlight&quot;&gt;display: inline-block&lt;\/span&gt;&lt;\/span\n           &gt;\n       &lt;\/div&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>We use classes to group the spans and the divs together to change the color and background color in CSS. Remember height or width on spans cannot be changed unless you add the <code>display: inline-block<\/code> property.<br><\/p>\n\n\n\n<p>Here\u2019s what it looks like when they work together:<\/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;title&gt;Divs\/Spans&lt;\/title&gt;\n       &lt;style&gt;\n           * {\n               box-sizing: border-box;\n               font-size: 1.4rem;\n               font-family: monospace;\n           }\n           .div-style {\n               background: purple;\n               color: blanchedalmond;\n               height: auto;\n               padding: 20px;\n               margin: 10px;\n           }\n           .span-style {\n               background: orange;\n               color: ivory;\n           }\n           h3 {\n               text-decoration: underline;;\n           }\n           .nav {\n               background:goldenrod;\n               padding: 20px;\n           }\n           .headline {\n               font-weight: bold;\n               font-size: 1.6rem;\n           }\n           .flex-container {\n               display: flex;\n           }\n           .container {\n               display: flex;\n               flex-direction: column;&quot;\n           }\n           .sidebar-main-container {\n               background:indianred;\n               padding: 20px;\n           }\n           .sidebar {\n               background: white;\n               color: black;\n               width: 40%;\n               padding: 20px;\n           }\n           .main-container {\n               width: 60%;\n               padding: 20px;\n               background:green;\n               font-size: 1.2rem;\n           }\n           .main-content {\n               width: 100%;\n               margin: 10px 0px;\n               display: flex;\n           }\n           .child-container {\n               width: 50%;\n               font-size: 1.0rem;\n           }\n           .pink {\n               background: pink;\n               color: black;\n           }\n           .red {\n               background: red;\n           }\n           p{\n               font-size: 1.2rem;\n           }\n           .footer {\n               text-align: center;\n               background: cornflowerblue;\n           }\n           .footer span {\n               font-size: .7rem;\n           }\n       &lt;\/style&gt;\n   &lt;\/head&gt;\n   &lt;body&gt;\n       &lt;h3&gt;Using Divs and Spans Together:&lt;\/h3&gt;\n \n       &lt;div class=&quot;div-style container&quot;&gt;\n           &lt;div class=&quot;headline&quot;&gt;Div 1: Main Overall Container&lt;\/div&gt;\n           &lt;div class=&quot;nav&quot;&gt;\n               &lt;h2&gt;Div 1a: Header&lt;\/h2&gt;\n               &lt;p&gt;Divs can create boxes for web layout&lt;\/p&gt;\n           &lt;\/div&gt;\n           &lt;div class=&quot;sidebar-main-container&quot;&gt;\n               &lt;p&gt;Div 1b: Sidebar-Main Content&lt;\/p&gt;\n               &lt;div class=&quot;flex-container&quot;&gt;\n                   &lt;div class=&quot;sidebar&quot;&gt;\n                       &lt;span style=&quot;font-size: 1.2rem;&quot;&gt;Div 1b.1&lt;\/span&gt;\n                       &lt;span style=&quot;font-size: 1.2rem; color: purple;&quot;&gt;Sidebar Container&lt;\/span&gt;\n                   &lt;\/div&gt;\n                   &lt;div class=&quot;main-container&quot;&gt;\n                       &lt;span style=&quot;font-size: 1.2rem;&quot;&gt;Div 1b.2&lt;\/span&gt;\n                       &lt;span style=&quot;font-size: 1.2rem; color: orange;&quot;&gt;Main Container&lt;\/span&gt;\n                       &lt;div class=&quot;main-content&quot;&gt;\n                           &lt;div class=&quot;child-container pink&quot;&gt;Child 1 1b.2.1&lt;\/div&gt;\n                           &lt;div class=&quot;child-container red&quot;&gt;Child 2 1b.2.2&lt;\/div&gt;\n                       &lt;\/div&gt;\n                   &lt;\/div&gt;\n               &lt;\/div&gt;\n               &lt;div class=&quot;footer&quot;&gt;\n                   &lt;span&gt;Footer&lt;\/span&gt;\n                   &lt;span&gt;Container&lt;\/span&gt;\n                   &lt;span&gt;Goes Here&lt;\/span&gt;\n               &lt;\/div&gt;\n           &lt;\/div&gt;\n          \n       &lt;\/div&gt;\n      \n   &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>Spans and divs work in conjunction with other HTML elements to create the basic building blocks of your website. Spans can be styled separately from your divs to create emphasis.&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"&lt;span&gt; elements are a generic HTML element similar to &lt;div&gt;. If you recall, divs are a generic container primarily used for the layout of a webpage and take up as much space as they can because they are a block element.&nbsp; Spans are an inline element. They only take up as much space as needed&hellip;","protected":false},"author":77,"featured_media":18835,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17287],"tags":[],"class_list":{"0":"post-18851","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":"CSS","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>CSS Span: difference between block and inline elements<\/title>\n<meta name=\"description\" content=\"Spans are a special type of inline element that can be nested inside a larger container and styled differently to stand out from others. Learn how to use elements in this guide.\" \/>\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\/css-span\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Span\" \/>\n<meta property=\"og:description\" content=\"Spans are a special type of inline element that can be nested inside a larger container and styled differently to stand out from others. Learn how to use elements in this guide.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/css-span\/\" \/>\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-01T18:28:26+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T07:42:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"729\" \/>\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=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"CSS Span\",\"datePublished\":\"2020-07-01T18:28:26+00:00\",\"dateModified\":\"2020-12-29T07:42:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/\"},\"wordCount\":146,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg\",\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/css-span\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/css-span\/\",\"name\":\"CSS Span: difference between block and inline elements\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg\",\"datePublished\":\"2020-07-01T18:28:26+00:00\",\"dateModified\":\"2020-12-29T07:42:50+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Spans are a special type of inline element that can be nested inside a larger container and styled differently to stand out from others. Learn how to use elements in this guide.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/css-span\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg\",\"width\":1020,\"height\":729,\"caption\":\"wingspan of a young bald eagle in flight.\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-span\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\/\/careerkarma.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS\",\"item\":\"https:\/\/careerkarma.com\/blog\/css\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CSS Span\"}]},{\"@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":"CSS Span: difference between block and inline elements","description":"Spans are a special type of inline element that can be nested inside a larger container and styled differently to stand out from others. Learn how to use elements in this guide.","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\/css-span\/","og_locale":"en_US","og_type":"article","og_title":"CSS Span","og_description":"Spans are a special type of inline element that can be nested inside a larger container and styled differently to stand out from others. Learn how to use elements in this guide.","og_url":"https:\/\/careerkarma.com\/blog\/css-span\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-01T18:28:26+00:00","article_modified_time":"2020-12-29T07:42:50+00:00","og_image":[{"width":1020,"height":729,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-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":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/css-span\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/css-span\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"CSS Span","datePublished":"2020-07-01T18:28:26+00:00","dateModified":"2020-12-29T07:42:50+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/css-span\/"},"wordCount":146,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg","articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/css-span\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/css-span\/","url":"https:\/\/careerkarma.com\/blog\/css-span\/","name":"CSS Span: difference between block and inline elements","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg","datePublished":"2020-07-01T18:28:26+00:00","dateModified":"2020-12-29T07:42:50+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Spans are a special type of inline element that can be nested inside a larger container and styled differently to stand out from others. Learn how to use elements in this guide.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/css-span\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/css-span\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/css-span\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/mathew-schwartz-b2_5y436Kfs-unsplash.jpg","width":1020,"height":729,"caption":"wingspan of a young bald eagle in flight."},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/css-span\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/careerkarma.com\/blog\/"},{"@type":"ListItem","position":2,"name":"CSS","item":"https:\/\/careerkarma.com\/blog\/css\/"},{"@type":"ListItem","position":3,"name":"CSS Span"}]},{"@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\/18851","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=18851"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/18851\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/18835"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=18851"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=18851"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=18851"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}