{"id":19336,"date":"2020-07-11T02:46:03","date_gmt":"2020-07-11T09:46:03","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=19336"},"modified":"2020-12-29T13:04:54","modified_gmt":"2020-12-29T21:04:54","slug":"html-dropdown","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-dropdown\/","title":{"rendered":"HTML Dropdown"},"content":{"rendered":"\n<p>As we expand our knowledge of HTML, one of the many things we need to start to consider is how what we create will affect the experience for people who use our page. One of the things we need to look at is how the organization of a web page will alter the experience. A page that is too cluttered will definitely affect whether or not clients decide to stay on the page and complete what they intended to do while on the site.&nbsp;<br><\/p>\n\n\n\n<p>One of the ways we can organize forms on our site is by nesting what would have been radio buttons inputs or checkboxes into its own dropdown so a user could scroll through a list to find one option.&nbsp;<br><\/p>\n\n\n\n<p>In this article, we will learn how to leverage HTML so that we can create a <code>&lt;select&gt;<\/code> dropdown that would be used as a form element. If you would like to see how a navbar dropdown menu might be created, please checkout <a href=\"https:\/\/careerkarma.com\/blog\/css-dropdown-menu\/\">CSS Dropdowns.<\/a><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Basic Structure<\/h2>\n\n\n\n<p>The basic structure of an HTML dropdown menu is a <code>&lt;select&gt;<\/code>&nbsp; element that names and identifies the grouping, and the multiple <code>&lt;option&gt;<\/code> tags that make up the content of your dropdown.&nbsp;&nbsp;<br><\/p>\n\n\n\n<p>To start, let\u2019s create the skeleton of that dropdown. Write out a <code>&lt;select&gt;<\/code> element with id and name of \u201cbaseball-teams\u201d. The id is going to help us if we want to adjust the styling. The name attribute helps us when we want to use the form data after a team is selected and we want to submit the information to a server.  <\/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;body&gt;\n \n&lt;h1&gt;The select element&lt;\/h1&gt;\n \n&lt;p&gt;The select element is used to create a drop-down list.&lt;\/p&gt;\n \n&lt;form onsubmit=handleSubmit(event)&gt;\n &lt;label for=&quot;baseball-teams&quot;&gt;Choose a baseball team:&lt;\/label&gt;\n &lt;select id=&quot;baseball-teams&quot; name=&quot;baseball-teams&quot;&gt;\n         &lt;option selected value=&quot;&quot;&gt;Select Team&lt;\/option&gt;\n         &lt;option value=&quot;Arizona Diamondbacks&quot;&gt;Arizona Diamondbacks&lt;\/option&gt;\n         &lt;option value=&quot;Atlanta Braves&quot;&gt;Atlanta Braves&lt;\/option&gt;\n         &lt;option value=&quot;Baltimore Orioles&quot;&gt;Baltimore Orioles&lt;\/option&gt;\n         &lt;option value=&quot;Boston Red Sox&quot;&gt;Boston Red Sox&lt;\/option&gt;\n         &lt;option value=&quot;Chicago Cubs&quot;&gt;Chicago Cubs&lt;\/option&gt;\n         &lt;option value=&quot;Chicago White Sox&quot;&gt;Chicago White Sox&lt;\/option&gt;\n         &lt;option value=&quot;Cincinnati Reds&quot;&gt;Cincinnati Reds&lt;\/option&gt;\n         &lt;option value=&quot;Cleveland Indians&quot;&gt;Cleveland Indians&lt;\/option&gt;\n         &lt;option value=&quot;Colorado Rockies&quot;&gt;Colorado Rockies&lt;\/option&gt;\n         &lt;option value=&quot;Detroit Tigers&quot;&gt;Detroit Tigers&lt;\/option&gt;   \n         &lt;option value=&quot;Houston Astros&quot;&gt;Houston Astros&lt;\/option&gt;   \n         &lt;option value=&quot;Kansas City Royals&quot;&gt;Kansas City Royals&lt;\/option&gt;\n         &lt;option value=&quot;LA Angels&quot;&gt;Los Angeles Angels of Anaheim&lt;\/option&gt;  \n         &lt;option value=&quot;LA Dodgers&quot;&gt;Los Angeles Dodgers&lt;\/option&gt;\n         &lt;option value=&quot;Miami Marlins&quot;&gt;Miami Marlins&lt;\/option&gt;\n         &lt;option value=&quot;Milwaukee Brewers&quot;&gt;Milwaukee Brewers&lt;\/option&gt;\n         &lt;option value=&quot;Minnesota Twins&quot;&gt;Minnesota Twins&lt;\/option&gt;\n         &lt;option value=&quot;NY Mets&quot;&gt;New York Mets&lt;\/option&gt;\n         &lt;option value=&quot;NY Yankees&quot;&gt;New York Yankees&lt;\/option&gt;\n         &lt;option value=&quot;Oakland Athletics&quot;&gt;Oakland Athletics&lt;\/option&gt;\n         &lt;option value=&quot;Philadelphia Phillies&quot;&gt;Philadelphia Phillies&lt;\/option&gt;\n         &lt;option value=&quot;Pittsburgh Pirates&quot;&gt;Pittsburgh Pirates&lt;\/option&gt;\n         &lt;option value=&quot;San Diego Padres&quot;&gt;San Diego Padres&lt;\/option&gt;\n         &lt;option value=&quot;San Francisco Giants&quot;&gt;San Francisco Giants&lt;\/option&gt;\n         &lt;option value=&quot;Seattle Mariners&quot;&gt;Seattle Mariners&lt;\/option&gt;\n         &lt;option value=&quot;STL&quot;&gt;St. Louis Cardinals&lt;\/option&gt;\n         &lt;option value=&quot;Tampa&quot;&gt;Tampa Bay Rays&lt;\/option&gt;\n         &lt;option value=&quot;TX&quot;&gt;Texas Rangers&lt;\/option&gt;\n         &lt;option value=&quot;Toronto&quot; value=&quot;LA Angels&quot;&gt;Toronto Blue Jays&lt;\/option&gt;\n         &lt;option value=&quot;Washington&quot;&gt;Washington Nationals&lt;\/option&gt;\n       &lt;\/select&gt;\n &lt;br&gt;&lt;br&gt;\n &lt;input type=&quot;submit&quot; value=&quot;Submit&quot;&gt;\n&lt;\/form&gt;\n \n&lt;p&gt;Click the &quot;Submit&quot; button and the form's data will be shown below.&lt;\/p&gt;\n&lt;h3&gt;&lt;\/h3&gt;\n&lt;script async defer&gt;\n \n const handleSubmit = (event) =&gt; {\n   event.preventDefault()\n   let select = document.getElementById('baseball-teams');\n   let option = select.options[select.selectedIndex];\n   let result = document.querySelector('h3');\n   result.textContent = option.text;\n }\n&lt;\/script&gt;\n&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>Running your code at this point, you will see a very basic dropdown. The first option tells what the value of the dropdown options is. In this case, they want us to choose a baseball team. Click on the dropdown and you will see values for all of the teams in the major league.&nbsp;<br><\/p>\n\n\n\n<p>When you pick a value, it assigns it to the selected index of the <code>&lt;select&gt;<\/code>. This is what will help any sort of logic you have when you decide what to do with the data. Knowing the name and value of the selected index is super important if you want to do anything with that data.&nbsp;<br><\/p>\n\n\n\n<p>You\u2019ll study more about what to do with form data when you study the backend \u2013 don\u2019t worry about what\u2019s going on with the JavaScript at the bottom of the document. Only worry about what to do to get the dropdown on the page \u2013 the <code>&lt;select&gt;<\/code> and the <code>&lt;option&gt;<\/code> elements.&nbsp;<\/p>\n\n\n\n<iframe loading=\"lazy\" frameborder=\"0\" width=\"100%\" height=\"400px\" src=\"https:\/\/repl.it\/@careerkarma\/HTML-SelectOption-Dropdown?lite=true\"><\/iframe>\n<br>\n<br>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>In this article we learned about how to create a dropdown menu for forms. Use the <code>&lt;select&gt;<\/code> and <code>&lt;option&gt;<\/code> elements to give your users a way to make a selection from multiple options. Once you get the hang of the basics here, look into what <code>&lt;optgroup&gt;<\/code> does!&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"As we expand our knowledge of HTML, one of the many things we need to start to consider is how what we create will affect the experience for people who use our page. One of the things we need to look at is how the organization of a web page will alter the experience. A&hellip;","protected":false},"author":77,"featured_media":19337,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-19336","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>HTML Dropdown: A Step-By-Step Guide | Career Karma<\/title>\n<meta name=\"description\" content=\"When creating forms, coders use dropdowns so that users can select from a list of options. Here\u2019s how to create dropdowns in forms using HTML.\" \/>\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-dropdown\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"HTML Dropdown\" \/>\n<meta property=\"og:description\" content=\"When creating forms, coders use dropdowns so that users can select from a list of options. Here\u2019s how to create dropdowns in forms using HTML.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-dropdown\/\" \/>\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-11T09:46:03+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T21:04:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-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-dropdown\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"HTML Dropdown\",\"datePublished\":\"2020-07-11T09:46:03+00:00\",\"dateModified\":\"2020-12-29T21:04:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/\"},\"wordCount\":474,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/\",\"name\":\"HTML Dropdown: A Step-By-Step Guide | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg\",\"datePublished\":\"2020-07-11T09:46:03+00:00\",\"dateModified\":\"2020-12-29T21:04:54+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"When creating forms, coders use dropdowns so that users can select from a list of options. Here\u2019s how to create dropdowns in forms using HTML.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/html-dropdown\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg\",\"width\":1020,\"height\":680,\"caption\":\"Code on Computer Screen\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/html-dropdown\/#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\":\"HTML Dropdown\"}]},{\"@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":"HTML Dropdown: A Step-By-Step Guide | Career Karma","description":"When creating forms, coders use dropdowns so that users can select from a list of options. Here\u2019s how to create dropdowns in forms using HTML.","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-dropdown\/","og_locale":"en_US","og_type":"article","og_title":"HTML Dropdown","og_description":"When creating forms, coders use dropdowns so that users can select from a list of options. Here\u2019s how to create dropdowns in forms using HTML.","og_url":"https:\/\/careerkarma.com\/blog\/html-dropdown\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-07-11T09:46:03+00:00","article_modified_time":"2020-12-29T21:04:54+00:00","og_image":[{"width":1020,"height":680,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-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-dropdown\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"HTML Dropdown","datePublished":"2020-07-11T09:46:03+00:00","dateModified":"2020-12-29T21:04:54+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/"},"wordCount":474,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-dropdown\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/","url":"https:\/\/careerkarma.com\/blog\/html-dropdown\/","name":"HTML Dropdown: A Step-By-Step Guide | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg","datePublished":"2020-07-11T09:46:03+00:00","dateModified":"2020-12-29T21:04:54+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"When creating forms, coders use dropdowns so that users can select from a list of options. Here\u2019s how to create dropdowns in forms using HTML.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-dropdown\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/07\/sai-kiran-anagani-5Ntkpxqt54Y-unsplash.jpg","width":1020,"height":680,"caption":"Code on Computer Screen"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-dropdown\/#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":"HTML Dropdown"}]},{"@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\/19336","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=19336"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/19336\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/19337"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=19336"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=19336"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=19336"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}