{"id":14698,"date":"2020-04-15T12:54:14","date_gmt":"2020-04-15T19:54:14","guid":{"rendered":"https:\/\/careerkarma.com\/blog\/?p=14698"},"modified":"2023-12-01T02:40:48","modified_gmt":"2023-12-01T10:40:48","slug":"css-font-family","status":"publish","type":"post","link":"https:\/\/careerkarma.com\/blog\/css-font-family\/","title":{"rendered":"CSS Font Family"},"content":{"rendered":"\n<p>Styling the text on a web page is an important part of web design. For instance, you may want headers to appear in a specific font, or all text on a page to use the <code>serif<\/code> font.<br><\/p>\n\n\n\n<p>That\u2019s where the CSS font-family property comes in. The CSS font-family property allows you to specify one or more font families which will be used to style the text on a web page.<br><\/p>\n\n\n\n<p>This tutorial will discuss, with reference to examples, the basics of the CSS font-family property, and how you can use the property to style the text on a web page.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CSS Font Family<\/h2>\n\n\n\n<p>There are many aspects involved with styling a font in CSS, ranging from setting a color to the size of the font. One of the most important parts of styling a font, though, is to set the font family\u2014the style used by text on a web page.<br><\/p>\n\n\n\n<p>To set the font family used by text on a web page, you can use the font-family property. The syntax for the font-family property is as follows:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>font-family: fontFamilyOne, fontFamilyTwo, \u2026;<\/pre><\/div>\n\n\n\n<p>The font-family property accepts either a single font or a list of fonts. If you specify more than one fonts, you should separate each font with a comma.<br><\/p>\n\n\n\n<p>The order in which fonts appear is the order in which the browser will try to apply the fonts. The browser will default to using the first font in the list that either is installed or can be downloaded by the web browser. If that font is not available, the second font will be used, and so on.<br><\/p>\n\n\n\n<p>It\u2019s important to note that the font-family property will select a font for each character in a block of text. So, if a particular character is not available in one font, the next font in your font family list will be tried, until a suitable font can be found.<br><\/p>\n\n\n\n<p>When you\u2019re using the font-weight property, it is best to include at least one generic font family name (such as serif, sans-serif, or monospace). This ensures that if another font in your list is not available, the browser will still be able to select a font for the text on a web page to appear.<br><\/p>\n\n\n\n<p>There are two ways in which you can use the font-family property. First, you can use the property to specify a custom font for a web page. Second, you can use the property to apply a generic font family to text on a web page. The generic font families available for use with the font-family property are as follows:<br><\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li>serif: Characters use the serif typeface (e.g. Lucida Bright, Palladio).<\/li>\n\n\n\n<li>sans-serif: Characters use the sans-serif typeface (e.g. Open Sans, Trebuchet MS).<\/li>\n\n\n\n<li>monospace: Characters all have the same width (e.g. monospace, Menlo).<\/li>\n\n\n\n<li>cursive: Characters have a joining stroke (e.g. Lucida Calligraphy).<\/li>\n\n\n\n<li>fantasy: Decorative fonts used to draw attention to characters (i.e. Papyrus).<\/li>\n<\/ul>\n\n\n\n<p>There are other generic font families available, which you can read about in more depth in the <a href=\"https:\/\/developer.mozilla.org\/en-US\/docs\/Web\/CSS\/font-family\" target=\"_blank\" rel=\"noopener\" rel=\"nofollow\">Mozilla CSS font-family<\/a> documentation.<br><\/p>\n\n\n\n<p>Now that we know the basics of the font-family property, we can walk through a few examples of how it works in action.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">CSS Font Family Examples<\/h2>\n\n\n\n<p>We have been asked by a local stamp club, The Seattle Stamp Club, to customize the fonts of certain parts on their website.<br><\/p>\n\n\n\n<p>First, we have been asked to change the font of all &lt;h1&gt; headings on their \u201cContact\u201d page to use the \u201cOpen Sans\u201d font. So, for example, the \u201cContact Us\u201d heading on the \u201cContact\u201d page of their website should appear in Open Sans. If that font is not available, the generic \u201csans-serif\u201d family should be used. We could use the following code to accomplish this task:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;html&gt;\n&lt;h1&gt;Contact Us&lt;\/h1&gt;\n&lt;style&gt;\nh1 {\n\tfont-family: \"Open Sans\", sans-serif;\n}<\/pre><\/div>\n\n\n\n<p><em>Click the&nbsp;<\/em><img loading=\"lazy\" decoding=\"async\" width=\"24\" height=\"24\" class=\"wp-image-13930\" style=\"width: 24px;\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/iconfinder_play-circle-outline_326584.png\" alt=\"Image of the &quot;Run Code&quot; Button, a triangle inside a circle\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/iconfinder_play-circle-outline_326584.png 24w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/iconfinder_play-circle-outline_326584-20x20.png 20w\" sizes=\"auto, (max-width: 24px) 100vw, 24px\" \/> <em>button in the code editor above to see the output of our HTML\/CSS code.<\/em><\/p>\n\n\n\n<p>In our HTML code, we have specified a heading using a &lt;h1&gt; tag which contains the text <code>Contact Us<\/code>. Then, in our CSS code, we have used the font-family to define the font of the &lt;h1&gt; elements on our web page.<br><\/p>\n\n\n\n<p>The value we assigned to the font-family property sets the font of all &lt;h1&gt; elements to <code>Open Sans<\/code>, and if that font is not available, the generic <code>sans-serif<\/code> family is used. To accomplish this, we specified two fonts, separated by a comma.<br><\/p>\n\n\n\n<p>Now, suppose we also wanted to style all the &lt;p&gt; elements on the stamp club\u2019s <code>Contact<\/code> page to use the Times font. If that font is not available, a default serif font should be used. We could use the following code to accomplish this task:<\/p>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre>&lt;html&gt;\n&lt;p&gt;Are you interested in learning more about the Seattle Stamp Club? Contact us today!&lt;\/p&gt;\n&lt;style&gt;\np {\n\tfont-family: \"Times\", serif;\n}<\/pre><\/div>\n\n\n\n<p><em>Click the&nbsp;<\/em><img loading=\"lazy\" decoding=\"async\" width=\"24\" height=\"24\" class=\"wp-image-13930\" style=\"width: 24px;\" src=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/iconfinder_play-circle-outline_326584.png\" alt=\"Image of the &quot;Run Code&quot; Button, a triangle inside a circle\" srcset=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/iconfinder_play-circle-outline_326584.png 24w, https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/03\/iconfinder_play-circle-outline_326584-20x20.png 20w\" sizes=\"auto, (max-width: 24px) 100vw, 24px\" \/> <em>button in the code editor above to see the output of our HTML\/CSS code.<\/em><\/p>\n\n\n\n<p>In our example, we declared a paragraph of text using a &lt;p&gt; tag. Then, we set the font-family of all &lt;p&gt; tags in our CSS style sheet to use the <code>Times<\/code> and <code>serif<\/code> fonts. By default, the browser will try to render all &lt;p&gt; tags in the <code>Times<\/code> font. If this font is not available, the <code>serif<\/code> font is used.<br><\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Conclusion<\/h2>\n\n\n\n<p>The CSS font-family property allows you to specify the style of the text on a web page. For instance, you can use the font-family property to use the \u201cArial\u201d font, or the \u201ccursive\u201d generic font for all text on a web page.<br><\/p>\n\n\n\n<p>This tutorial discussed, with reference to examples, the basics of the CSS font-family property, and how you can use it to style the text on a web page. Now you\u2019re ready to start using the font-family property like a master web designer!<br><\/p>\n","protected":false},"excerpt":{"rendered":"Styling the text on a web page is an important part of web design. For instance, you may want headers to appear in a specific font, or all text on a page to use the serif font. That\u2019s where the CSS font-family property comes in. The CSS font-family property allows you to specify one or&hellip;","protected":false},"author":240,"featured_media":14699,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[17287],"tags":[],"class_list":{"0":"post-14698","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":"","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 font-family: A Complete Guide<\/title>\n<meta name=\"description\" content=\"The CSS font-family property allows developers to set the style of a font. On Career Karma, learn how to use the font-family property.\" \/>\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-font-family\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Font Family\" \/>\n<meta property=\"og:description\" content=\"The CSS font-family property allows developers to set the style of a font. On Career Karma, learn how to use the font-family property.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/careerkarma.com\/blog\/css-font-family\/\" \/>\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-04-15T19:54:14+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-12-01T10:40:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1020\" \/>\n\t<meta property=\"og:image:height\" content=\"681\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"James Gallagher\" \/>\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=\"James Gallagher\" \/>\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\/css-font-family\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/\"},\"author\":{\"name\":\"James Gallagher\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"headline\":\"CSS Font Family\",\"datePublished\":\"2020-04-15T19:54:14+00:00\",\"dateModified\":\"2023-12-01T10:40:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/\"},\"wordCount\":941,\"commentCount\":0,\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg\",\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/careerkarma.com\/blog\/css-font-family\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/\",\"name\":\"CSS font-family: A Complete Guide\",\"isPartOf\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg\",\"datePublished\":\"2020-04-15T19:54:14+00:00\",\"dateModified\":\"2023-12-01T10:40:48+00:00\",\"author\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94\"},\"description\":\"The CSS font-family property allows developers to set the style of a font. On Career Karma, learn how to use the font-family property.\",\"breadcrumb\":{\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/careerkarma.com\/blog\/css-font-family\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg\",\"width\":1020,\"height\":681},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/careerkarma.com\/blog\/css-font-family\/#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 Font Family\"}]},{\"@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\/e79364792443fbff794a144c67ec8e94\",\"name\":\"James Gallagher\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"contentUrl\":\"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg\",\"caption\":\"James Gallagher\"},\"description\":\"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.\",\"url\":\"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"CSS font-family: A Complete Guide","description":"The CSS font-family property allows developers to set the style of a font. On Career Karma, learn how to use the font-family property.","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-font-family\/","og_locale":"en_US","og_type":"article","og_title":"CSS Font Family","og_description":"The CSS font-family property allows developers to set the style of a font. On Career Karma, learn how to use the font-family property.","og_url":"https:\/\/careerkarma.com\/blog\/css-font-family\/","og_site_name":"Career Karma","article_publisher":"http:\/\/facebook.com\/careerkarmaapp","article_published_time":"2020-04-15T19:54:14+00:00","article_modified_time":"2023-12-01T10:40:48+00:00","og_image":[{"width":1020,"height":681,"url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg","type":"image\/jpeg"}],"author":"James Gallagher","twitter_card":"summary_large_image","twitter_creator":"@career_karma","twitter_site":"@career_karma","twitter_misc":{"Written by":"James Gallagher","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#article","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/"},"author":{"name":"James Gallagher","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"headline":"CSS Font Family","datePublished":"2020-04-15T19:54:14+00:00","dateModified":"2023-12-01T10:40:48+00:00","mainEntityOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/"},"wordCount":941,"commentCount":0,"image":{"@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg","articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/careerkarma.com\/blog\/css-font-family\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/","url":"https:\/\/careerkarma.com\/blog\/css-font-family\/","name":"CSS font-family: A Complete Guide","isPartOf":{"@id":"https:\/\/careerkarma.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage"},"image":{"@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage"},"thumbnailUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg","datePublished":"2020-04-15T19:54:14+00:00","dateModified":"2023-12-01T10:40:48+00:00","author":{"@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/e79364792443fbff794a144c67ec8e94"},"description":"The CSS font-family property allows developers to set the style of a font. On Career Karma, learn how to use the font-family property.","breadcrumb":{"@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/careerkarma.com\/blog\/css-font-family\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#primaryimage","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/04\/screen-1839500_1920.jpg","width":1020,"height":681},{"@type":"BreadcrumbList","@id":"https:\/\/careerkarma.com\/blog\/css-font-family\/#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 Font Family"}]},{"@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\/e79364792443fbff794a144c67ec8e94","name":"James Gallagher","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/careerkarma.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","contentUrl":"https:\/\/careerkarma.com\/blog\/wp-content\/uploads\/2020\/01\/james-gallagher-150x150.jpg","caption":"James Gallagher"},"description":"James Gallagher is a self-taught programmer and the technical content manager at Career Karma. He has experience in range of programming languages and extensive expertise in Python, HTML, CSS, and JavaScript. James has written hundreds of programming tutorials, and he frequently contributes to publications like Codecademy, Treehouse, Repl.it, Afrotech, and others.","url":"https:\/\/careerkarma.com\/blog\/author\/jamesgallagher\/"}]}},"_links":{"self":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/14698","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\/240"}],"replies":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/comments?post=14698"}],"version-history":[{"count":0,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/posts\/14698\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media\/14699"}],"wp:attachment":[{"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/media?parent=14698"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/categories?post=14698"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/careerkarma.com\/blog\/wp-json\/wp\/v2\/tags?post=14698"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}