{"id":1899,"date":"2019-05-24T05:27:58","date_gmt":"2019-05-24T05:27:58","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=1899"},"modified":"2022-08-14T15:56:50","modified_gmt":"2022-08-14T22:56:50","slug":"tips-for-coding-html-color-property","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/","title":{"rendered":"4 Tips for Coding Your HTML Color Property"},"content":{"rendered":"\n<p>Coding for the web can be a sloppy affair. There are often many methods to get you where you want to go, and some of them might be more efficient or more effective than others. What\u2019s more, some solutions might not even work under all conditions. The difference between a good website and a great one can hinge on your choice of approach, and nowhere is this more evident than in HTML color coding. Coding HTML color properties can be a stressful ordeal, and you can go nuts trying to decide how to proceed.<br><\/p>\n\n\n\n<p>Coding HTML color properties doesn&#8217;t have to be brain surgery, though. In this guide, we provide four different options for massaging your site&#8217;s HTML and producing a veritable rainbow of hues. Follow our simple instructions and your website will soon pulse with appealing tones, making your business&#8217; site stand head and shoulders above the competition.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/shahadat-shemul-1532387-unsplash.jpg\" alt=\"Shallow focus photography of computer codes\" class=\"wp-image-2249\" width=\"407\" height=\"271\"\/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-use-hsl-values\"><strong>Use HSL Values<\/strong><\/h2>\n\n\n\n<p>Modern browsers work well with hue, saturation, and lightness (HSL) values. This option isn&#8217;t used as frequently as some others, but it works well and is easy to implement. Assigning HSL values is a quick option, as well.<br><\/p>\n\n\n\n<p>To apply HSL, use a standard style attribute, specify \u201chsl\u201d as the type, and assign values in parentheses, like so:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;body style=\"background-color:hsl(0,0%,96%);\"&gt;\n  &lt;\/body&gt;<\/pre><\/div>\n\n\n\n<p>You can control opacity by passing hsl on an alpha channel; use the prefix \u201chsla,\u201d and place a fourth value ranging from 0 (<em>transparent<\/em>) to 1 (<em>opaque<\/em>) in the parentheses:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;body style=\"background-color:hsla(0,0%,96%,0.8);\"&gt;\n  &lt;\/body&gt;<\/pre><\/div>\n\n\n\n<figure class=\"wp-block-gallery columns-1 is-cropped wp-block-gallery-1 is-layout-flex wp-block-gallery-is-layout-flex\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img loading=\"lazy\" decoding=\"async\" width=\"1200\" height=\"800\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/caspar-camille-rubin-224229-unsplash.jpg\" alt=\"\" data-id=\"1910\" data-link=\"https:\/\/careerkarma.com\/blog\/?attachment_id=1910\" class=\"wp-image-1910\"\/><\/figure><\/li><\/ul><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-try-using-rgb-values\"><strong>Try Using RGB Values<\/strong><\/h2>\n\n\n\n<p>Using red, green, and blue (RGB) values to code HTML background color is a more popular option than using HSL\u2014RGB works for browsers both old and new, which makes using it more appealing to coders who aim to produce sites available to a broad audience. <br><\/p>\n\n\n\n<p>Apply RGB in much the same way as you would HSL. Use the same style attribute format, but replace \u201chsl\u201d with \u2018rgb,\u201d and populate the parenthetical with the three color attributes:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;body style=\"background-color:rgb(102,0,51);\"&gt;\n  &lt;\/body&gt;<\/pre><\/div>\n\n\n\n<p>Like HSL, you can manage opacity with RGB by assigning it to an alpha channel and adding a fourth variable ranging from 0 to 1 to the parenthetical:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;body style=\"background-color:rgba(102,0,51, 0.2);\"&gt;\n  &lt;\/body&gt;<\/pre><\/div>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/markus-spiske-1381441-unsplash.jpg\" alt=\"computer codes on screen\" class=\"wp-image-2252\" width=\"433\" height=\"288\"\/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-color-with-good-ol-hex-codes\"><strong>Color With Good Ol\u2019 Hex Codes<\/strong><\/h2>\n\n\n\n<p>This option is the tried-and-true standby. Assigning hex values is a popular method of coding HTML color properties as it is recognized by most browsers out in the world. The hex code also has the advantage of being a single variable as opposed to multiple ones that are subject to error.<br><\/p>\n\n\n\n<p>To use hex codes to code HTML color, simply use the same style attribute with the hex code in place of \u201chsl\u201d or \u201crgb\u201d:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;body style=\"background-color:#228B22;\"&gt;\n  &lt;\/body&gt;<\/pre><\/div>\n\n\n\n<p>Remember that hex color behavior changes depending on their placement. Always consider whether you are working with inline elements and block-level elements when assigning hex color codes.<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/nate-grant-369104-unsplash.jpg\" alt=\"\u201dTurned on MacBook Pro on table\u201d\" class=\"wp-image-1911\" width=\"352\" height=\"624\"\/><\/figure><\/div>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-when-in-doubt-use-the-color-names\"><strong>When in Doubt, Use the Color Names<\/strong><\/h2>\n\n\n\n<p>For those of us who aren\u2019t up on our hex codes or hsl values, you can always go with color names. There are 140 color names that you can use in HTML, so if you need to get your site color changed in a flash, go with this method.<br><\/p>\n\n\n\n<p>You\u2019ll use the same style attribute as before, but you\u2019ll want to replace the hex code with the color name:<br><\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;body style=\"background-color:brown;\"&gt;\n  &lt;\/body&gt;<\/pre><\/div>\n\n\n\n<p>Using color names is an excellent method for those that need to code a simple color shift without much fuss. The next time you need to resolve your issue in a hurry, give color names a shot!<\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/markus-spiske-207946-unsplash.jpg\" alt=\"Colorful software or web code on a computer monitor\" class=\"wp-image-2250\" width=\"430\" height=\"286\"\/><\/figure><\/div>\n\n\n\n<p>And there you have it! These are the quickest and simplest methods to utilize when <a href=\"https:\/\/careerkarma.com\/blog\/learn-html\/\">learning HTML<\/a> color properties. The next time you need to add a splash of color to your site, don\u2019t fret or tear out your hair. Just get out our guide and make your website a thing of beauty!<br><\/p>\n\n\n\n<div class=\"wp-block-image\"><figure class=\"aligncenter is-resized\"><img loading=\"lazy\" decoding=\"async\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/max-nelson-1227352-unsplash.jpg\" alt=\"Macbook Pro\" class=\"wp-image-2251\" width=\"453\" height=\"297\"\/><\/figure><\/div>\n","protected":false},"excerpt":{"rendered":"Coding for the web can be a sloppy affair. There are often many methods to get you where you want to go, and some of them might be more efficient or more effective than others. What\u2019s more, some solutions might not even work under all conditions. The difference between a good website and a great&hellip;","protected":false},"author":21,"featured_media":1909,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17281],"tags":[11714],"class_list":{"0":"post-1899","1":"post","2":"type-post","3":"status-publish","4":"format-standard","5":"has-post-thumbnail","7":"category-html","8":"tag-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>4 Tips for Coding Your HTML Color Property | Career Karma<\/title>\n<meta name=\"description\" content=\"Having trouble keeping your website bright and popping with vivid colors? Read our guide to coding HTML color properties and make your site beautiful!\" \/>\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\/tips-for-coding-html-color-property\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"4 Tips for Coding Your HTML Color Property\" \/>\n<meta property=\"og:description\" content=\"Having trouble keeping your website bright and popping with vivid colors? Read our guide to coding HTML color properties and make your site beautiful!\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/\" \/>\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=\"2019-05-24T05:27:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-08-14T22:56:50+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"800\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Paul Larkin\" \/>\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=\"Paul Larkin\" \/>\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\/tips-for-coding-html-color-property\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/\"},\"author\":{\"name\":\"Paul Larkin\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1761df0013e0bbfeb16c0d4078e4685d\"},\"headline\":\"4 Tips for Coding Your HTML Color Property\",\"datePublished\":\"2019-05-24T05:27:58+00:00\",\"dateModified\":\"2022-08-14T22:56:50+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/\"},\"wordCount\":633,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg\",\"keywords\":[\"HTML\"],\"articleSection\":[\"HTML\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/\",\"name\":\"4 Tips for Coding Your HTML Color Property | Career Karma\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg\",\"datePublished\":\"2019-05-24T05:27:58+00:00\",\"dateModified\":\"2022-08-14T22:56:50+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1761df0013e0bbfeb16c0d4078e4685d\"},\"description\":\"Having trouble keeping your website bright and popping with vivid colors? Read our guide to coding HTML color properties and make your site beautiful!\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg\",\"width\":1200,\"height\":800,\"caption\":\"Lines of HTML codes\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#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\":\"4 Tips for Coding Your HTML Color Property\"}]},{\"@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\/1761df0013e0bbfeb16c0d4078e4685d\",\"name\":\"Paul Larkin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/paul-larkin-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/paul-larkin-150x150.jpg\",\"caption\":\"Paul Larkin\"},\"description\":\"Paul Larkin has years of experience in the tech industry and writes about cybersecurity and future of work.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/paul-larkin\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"4 Tips for Coding Your HTML Color Property | Career Karma","description":"Having trouble keeping your website bright and popping with vivid colors? Read our guide to coding HTML color properties and make your site beautiful!","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\/tips-for-coding-html-color-property\/","og_locale":"en_US","og_type":"article","og_title":"4 Tips for Coding Your HTML Color Property","og_description":"Having trouble keeping your website bright and popping with vivid colors? Read our guide to coding HTML color properties and make your site beautiful!","og_url":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2019-05-24T05:27:58+00:00","article_modified_time":"2022-08-14T22:56:50+00:00","og_image":[{"width":1200,"height":800,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg","type":"image\/jpeg"}],"author":"Paul Larkin","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"Paul Larkin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/"},"author":{"name":"Paul Larkin","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1761df0013e0bbfeb16c0d4078e4685d"},"headline":"4 Tips for Coding Your HTML Color Property","datePublished":"2019-05-24T05:27:58+00:00","dateModified":"2022-08-14T22:56:50+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/"},"wordCount":633,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg","keywords":["HTML"],"articleSection":["HTML"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/","url":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/","name":"4 Tips for Coding Your HTML Color Property | Career Karma","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg","datePublished":"2019-05-24T05:27:58+00:00","dateModified":"2022-08-14T22:56:50+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/1761df0013e0bbfeb16c0d4078e4685d"},"description":"Having trouble keeping your website bright and popping with vivid colors? Read our guide to coding HTML color properties and make your site beautiful!","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2019\/05\/florian-olivo-1169465-unsplash.jpg","width":1200,"height":800,"caption":"Lines of HTML codes"},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/tips-for-coding-html-color-property\/#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":"4 Tips for Coding Your HTML Color Property"}]},{"@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\/1761df0013e0bbfeb16c0d4078e4685d","name":"Paul Larkin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/paul-larkin-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/02\/paul-larkin-150x150.jpg","caption":"Paul Larkin"},"description":"Paul Larkin has years of experience in the tech industry and writes about cybersecurity and future of work.","url":"https:\/\/careerkarma.com\/blog\/author\/paul-larkin\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/1899","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\/21"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=1899"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/1899\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/1909"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=1899"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=1899"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=1899"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}