{"id":21341,"date":"2020-12-20T22:45:08","date_gmt":"2020-12-21T06:45:08","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=21341"},"modified":"2020-12-29T13:04:22","modified_gmt":"2020-12-29T21:04:22","slug":"html-copyright-symbol","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/","title":{"rendered":"How to Create the Copyright Symbol in HTML"},"content":{"rendered":"\n<p><em>The &amp;copy; or &amp;#169; symbols represent the HTML copyright sign. These symbols let you embed a copyright sign on a web page. The copyright sign does not appear on most keyboards so you need to use the HTML symbol code.<\/em><\/p>\n\n\n\n<p>HTML has symbols and entities that may not necessarily be found on a keyboard easily, if they appear at all. This is because there are hundreds of possible symbols you may want to use on a computer. Your keyboard would have hundreds of keys to represent all the symbols.<\/p>\n\n\n\n<p>This article explains how to create the copyright symbol in HTML using various shortcuts.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML Copyright Symbol<\/h2>\n\n\n\n<p>You can create an HTML copyright symbol using the &amp;copy; or &amp;#169; symbol codes. These are often enclosed within a paragraph. The ampersand denotes that want to embed a special character onto the web page.<\/p>\n\n\n\n<p>The syntax for the copyright symbol is:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;p&gt;\u00a9 2020 Career Karma&lt;\/p&gt;<\/pre><\/div>\n\n\n\n<p>This displays the following text:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>\u00a9 2020 Career Karma<\/pre><\/div>\n\n\n\n<p>We could also use the \u00a9 to achieve the same goal. The ampersand and semi-colon must be specified. Otherwise, the copyright symbol will not embed onto your web page. This is because \u00a9 and \u00a9 are special HTML characters.<\/p>\n\n\n\n<p>When creating a web page, it\u2019s often a good idea to claim ownership of what you create. This will give you some legal protection of your work. To claim ownership, use a copyright notice in your footer to protect your or your client\u2019s material. You may want to use a copyright symbol to make your claim of ownership explicit.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Copyright HTML Reference<\/h2>\n\n\n\n<p>The following table illustrates the different ways you can create an HTML copyright symbol in your code:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/kYwbORsrs6GE3_w4MmSYx1FqGsNWGqqwpFK_-ogwo_IJt938LYFndHxdW3KHayJdM9CBXHBFiYo31C8zF_AE8LAeShj601OpITMmLMSLB47He54eU567CRdc0NL52QDjs3oRCO_F\" alt=\"\"\/><\/figure>\n\n\n\n<p>On a Windows or a Mac machine, there are special shortcuts you can use just to create the actual character itself. Alt + 0169 will get the copyright character (\u00a9) on Windows, while it is option + G on Mac.<\/p>\n\n\n\n<p>Use the HTML Entity Name or Number to create the special character. Wrap &amp;copy; or &amp;#169; in a set of &lt;span&gt; tags and get the same result.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Copyright Symbol HTML Example<\/h2>\n\n\n\n<p>A common place to use a copyright symbol is in a footer. Let&#8217;s write a copyright notice that appears in a footer:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;footer&gt;\n\t&lt;p&gt;Created by Career Karma. \u00a9 2020&lt;\/p&gt;\n&lt;\/footer&gt;<\/pre><\/div>\n\n\n\n<p>The <a href=\"https:\/\/careerkarma.com\/blog\/html-footer\/\">HTML &lt;footer&gt; tag<\/a> tells our code that we are creating a footer for our web page. Within that footer we have specified an <a href=\"https:\/\/careerkarma.com\/blog\/basic-html-tags\/\">HTML &lt;p&gt; tag<\/a>. The &lt;p&gt; tag contains some text and a copyright symbol. Our code displays:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>Created by Career Karma. \u00a9 2020<\/pre><\/div>\n\n\n\n<p>We have successfully created a copyright symbol.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Using HTML Copyright Symbol In Your Code<\/h2>\n\n\n\n<p>Let&#8217;s take a look at a full example of the HTML copyright symbol.<\/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   &lt;meta charset=&quot;utf-8&quot;&gt;\n   &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width&quot;&gt;\n   &lt;title&gt;repl.it&lt;\/title&gt;\n   &lt;link href=&quot;style.css&quot; rel=&quot;stylesheet&quot; type=&quot;text\/css&quot; \/&gt;\n   &lt;style&gt;\n     body {\n       font-family: Arial\n     }\n     table, th, td {\n       border: 1px solid black;\n       border-collapse: collapse;\n     }\n     th, td {\n       padding: 15px;\n     }\n     table, footer {\n       margin: 20px auto;\n       text-align: center;\n     }\n     tr:nth-child(even) {\n       background-color: #dddddd;\n     }\n     span {\n       color: blue;\n     }\n   &lt;\/style&gt;\n   &lt;script&gt;\n     function todayDate(){\n        var d = new Date();\n        var n = d.getFullYear() + &quot;  &quot;;\n        return document.getElementById(&quot;date&quot;).innerHTML = n;\n      }\n   &lt;\/script&gt;\n &lt;\/head&gt;\n &lt;body onload=todayDate()&gt;\n   &lt;table bordered&gt;\n       &lt;tr&gt;\n         &lt;th&gt;Option&lt;\/th&gt;\n         &lt;th&gt;shortcut or syntax&lt;\/th&gt;\n       &lt;\/tr&gt;\n       &lt;tr&gt;\n         &lt;td&gt;Windows&lt;\/td&gt;\n         &lt;td&gt;Alt + 0169&lt;\/td&gt;\n       &lt;\/tr&gt;\n       &lt;tr&gt;\n         &lt;td&gt;Mac&lt;\/td&gt;\n         &lt;td&gt;option + G&lt;\/td&gt;\n       &lt;\/tr&gt;\n        &lt;tr&gt;\n         &lt;td&gt;HTML Entity Name&lt;\/td&gt;\n         &lt;td&gt;&lt;span&gt;&amp;lt;span&gt;&lt;\/span&gt;&amp;amp;copy;&lt;span&gt;&amp;lt;span&gt;&lt;\/span&gt;&lt;\/td&gt;\n       &lt;\/tr&gt;\n        &lt;tr&gt;\n         &lt;td&gt;HTML Entity Number&lt;\/td&gt;\n         &lt;td&gt;&lt;span&gt;&amp;lt;span&gt;&lt;\/span&gt;&amp;amp;#169;&lt;span&gt;&amp;lt;span&gt;&lt;\/span&gt;&lt;\/td&gt;\n       &lt;\/tr&gt;\n \n   &lt;\/table&gt;\n   &lt;footer&gt;\n      &amp;copy; &lt;em id=&quot;date&quot;&gt;&lt;\/em&gt;Career Karma\n    &lt;\/footer&gt;\n &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<p>We use the copyright symbol the fourth to last line in the footer HTML code. Switch out the ways to get them all to work for you.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The HTML copyright symbol is represented by &amp;copy; or &amp;#169;. You can use this code to embed the copyright symbol onto a web page if this character is not represented on your keyboard.<\/p>\n\n\n\n<p>Do you want to learn more about HTML and how to become a web developer? Check out our complete <a href=\"https:\/\/careerkarma.com\/blog\/learn-html\/\">How to Learn HTML guide<\/a>. In this guide, you&#8217;ll find expert advice on learning HTML and a list of top online learning resources.<\/p>\n","protected":false},"excerpt":{"rendered":"The &amp;copy; or &amp;#169; symbols represent the HTML copyright sign. These symbols let you embed a copyright sign on a web page. The copyright sign does not appear on most keyboards so you need to use the HTML symbol code. HTML has symbols and entities that may not necessarily be found on a keyboard easily,&hellip;","protected":false},"author":77,"featured_media":21342,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[],"class_list":{"0":"post-21341","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-html"},"acf":{"post_sub_title":"","sprint_id":"","query_class":"HTML","school_sft":"","parent_sft":"","school_privacy_policy":"","has_review":null,"is_sponser_post":"","is_guest_post":""},"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.4 (Yoast SEO v27.4) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How to Create the Copyright Symbol in HTML | Career Karma<\/title>\n<meta name=\"description\" content=\"Learn the different ways to create the copyright symbol in HTML in this article from Career Karma.\" \/>\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-copyright-symbol\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Create the Copyright Symbol in HTML\" \/>\n<meta property=\"og:description\" content=\"Learn the different ways to create the copyright symbol in HTML in this article from Career Karma.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/\" \/>\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-12-21T06:45:08+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2020-12-29T21:04:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/pexels-lukas-317356.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"676\" \/>\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\\\/html-copyright-symbol\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/\"},\"author\":{\"name\":\"Christina Kopecky\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"headline\":\"How to Create the Copyright Symbol in HTML\",\"datePublished\":\"2020-12-21T06:45:08+00:00\",\"dateModified\":\"2020-12-29T21:04:22+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/\"},\"wordCount\":552,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/pexels-lukas-317356.jpg\",\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/\",\"name\":\"How to Create the Copyright Symbol in HTML | Career Karma\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/pexels-lukas-317356.jpg\",\"datePublished\":\"2020-12-21T06:45:08+00:00\",\"dateModified\":\"2020-12-29T21:04:22+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\"},\"description\":\"Learn the different ways to create the copyright symbol in HTML in this article from Career Karma.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#primaryimage\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/pexels-lukas-317356.jpg\",\"contentUrl\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/08\\\/pexels-lukas-317356.jpg\",\"width\":1020,\"height\":676},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/html-copyright-symbol\\\/#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 Create the Copyright Symbol in HTML\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/\",\"name\":\"Career Karma\",\"description\":\"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/#\\\/schema\\\/person\\\/ae0cdc4a5d198690d78482646894074e\",\"name\":\"Christina Kopecky\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/careerkarma.com\\\/blog\\\/wp-content\\\/uploads\\\/2020\\\/06\\\/image-3-150x150.jpg\",\"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 Create the Copyright Symbol in HTML | Career Karma","description":"Learn the different ways to create the copyright symbol in HTML in this article from Career Karma.","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-copyright-symbol\/","og_locale":"en_US","og_type":"article","og_title":"How to Create the Copyright Symbol in HTML","og_description":"Learn the different ways to create the copyright symbol in HTML in this article from Career Karma.","og_url":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-12-21T06:45:08+00:00","article_modified_time":"2020-12-29T21:04:22+00:00","og_image":[{"width":1020,"height":676,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/pexels-lukas-317356.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\/html-copyright-symbol\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/"},"author":{"name":"Christina Kopecky","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"headline":"How to Create the Copyright Symbol in HTML","datePublished":"2020-12-21T06:45:08+00:00","dateModified":"2020-12-29T21:04:22+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/"},"wordCount":552,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/pexels-lukas-317356.jpg","articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/","url":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/","name":"How to Create the Copyright Symbol in HTML | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/pexels-lukas-317356.jpg","datePublished":"2020-12-21T06:45:08+00:00","dateModified":"2020-12-29T21:04:22+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e"},"description":"Learn the different ways to create the copyright symbol in HTML in this article from Career Karma.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/pexels-lukas-317356.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/08\/pexels-lukas-317356.jpg","width":1020,"height":676},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/html-copyright-symbol\/#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 Create the Copyright Symbol in HTML"}]},{"@type":"WebSite","@id":"https:\/\/careerkarma.com\/blog\/#website","url":"https:\/\/careerkarma.com\/blog\/","name":"Career Karma","description":"Latest Coding Bootcamp News &amp; Career Hacks from Industry Insiders","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/careerkarma.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/ae0cdc4a5d198690d78482646894074e","name":"Christina Kopecky","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/06\/image-3-150x150.jpg","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\/21341","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=21341"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/21341\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/21342"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=21341"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=21341"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=21341"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}