{"id":41,"date":"2024-07-11T02:41:30","date_gmt":"2024-07-11T02:41:30","guid":{"rendered":"https:\/\/shaplakanon.com\/wdc\/?p=41"},"modified":"2024-07-11T02:41:31","modified_gmt":"2024-07-11T02:41:31","slug":"css-selectors","status":"publish","type":"post","link":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/","title":{"rendered":"CSS Selectors"},"content":{"rendered":"\n<h3 class=\"wp-block-heading\">Mastering CSS Selectors: A Beginner&#8217;s Guide<\/h3>\n\n\n\n<p>CSS selectors are an essential part of web development, allowing you to apply styles to specific HTML elements. Understanding how to use selectors effectively will enable you to create precise and efficient styles for your web pages. In this guide, we&#8217;ll cover the basics of CSS selectors, providing you with the knowledge you need to get started.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">What Are CSS Selectors?<\/h4>\n\n\n\n<p>CSS selectors are patterns used to select and style HTML elements. They determine which elements on the page will be affected by a given set of CSS rules. By using selectors, you can target elements based on their type, class, ID, attributes, and more.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Types of CSS Selectors<\/h4>\n\n\n\n<ol class=\"wp-block-list\">\n<li><strong>Element Selector<\/strong><\/li>\n\n\n\n<li><strong>ID Selector<\/strong><\/li>\n\n\n\n<li><strong>Class Selector<\/strong><\/li>\n\n\n\n<li><strong>Universal Selector<\/strong><\/li>\n\n\n\n<li><strong>Group Selector<\/strong><\/li>\n\n\n\n<li><strong>Attribute Selector<\/strong><\/li>\n\n\n\n<li><strong>Pseudo-classes and Pseudo-elements<\/strong><\/li>\n<\/ol>\n\n\n\n<p>Let&#8217;s explore each type in detail.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">1. Element Selector<\/h4>\n\n\n\n<p>The element selector targets all instances of a specific HTML element. It&#8217;s the most basic type of selector.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>p {\n    color: blue;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all <code>&lt;p&gt;<\/code> elements on the page will be styled with blue text.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">2. ID Selector<\/h4>\n\n\n\n<p>The ID selector targets a specific element with a unique ID attribute. IDs are unique within a page, meaning each ID should only be used once.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>#header {\n    background-color: lightgrey;\n}<\/code><\/pre>\n\n\n\n<p>In this example, the element with the ID <code>header<\/code> will have a light grey background.<\/p>\n\n\n\n<p><strong>HTML:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div id=\"header\"&gt;This is the header&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">3. Class Selector<\/h4>\n\n\n\n<p>The class selector targets elements with a specific class attribute. Unlike IDs, classes can be used on multiple elements.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>.box {\n    border: 1px solid black;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all elements with the class <code>box<\/code> will have a black border.<\/p>\n\n\n\n<p><strong>HTML:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;div class=\"box\"&gt;Box 1&lt;\/div&gt;\n&lt;div class=\"box\"&gt;Box 2&lt;\/div&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">4. Universal Selector<\/h4>\n\n\n\n<p>The universal selector targets all elements on the page. It is represented by an asterisk (<code>*<\/code>).<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>* {\n    margin: 0;\n    padding: 0;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all elements will have their margin and padding set to zero.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">5. Group Selector<\/h4>\n\n\n\n<p>The group selector allows you to apply the same style to multiple selectors by separating them with a comma.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>h1, h2, h3 {\n    color: green;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all <code>&lt;h1&gt;<\/code>, <code>&lt;h2&gt;<\/code>, and <code>&lt;h3&gt;<\/code> elements will be styled with green text.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">6. Attribute Selector<\/h4>\n\n\n\n<p>The attribute selector targets elements based on the presence or value of a specific attribute.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>a&#91;target=\"_blank\"] {\n    color: red;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all <code>&lt;a&gt;<\/code> elements with a <code>target<\/code> attribute value of <code>_blank<\/code> will have red text.<\/p>\n\n\n\n<p><strong>HTML:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;a href=\"https:\/\/example.com\" target=\"_blank\"&gt;External Link&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">7. Pseudo-classes and Pseudo-elements<\/h4>\n\n\n\n<p>Pseudo-classes and pseudo-elements allow you to style elements based on their state or position in the document.<\/p>\n\n\n\n<p><strong>Pseudo-classes:<\/strong><\/p>\n\n\n\n<p>Pseudo-classes are keywords added to selectors that specify a special state of the selected elements.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>a:hover {\n    color: orange;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all <code>&lt;a&gt;<\/code> elements will change to orange text when hovered over.<\/p>\n\n\n\n<p><strong>HTML:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;a href=\"https:\/\/example.com\"&gt;Hover over me&lt;\/a&gt;<\/code><\/pre>\n\n\n\n<p><strong>Pseudo-elements:<\/strong><\/p>\n\n\n\n<p>Pseudo-elements allow you to style specific parts of an element.<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>p::first-line {\n    font-weight: bold;\n}<\/code><\/pre>\n\n\n\n<p>In this example, the first line of all <code>&lt;p&gt;<\/code> elements will be styled with bold text.<\/p>\n\n\n\n<p><strong>HTML:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>&lt;p&gt;This is a paragraph. The first line will be bold.&lt;\/p&gt;<\/code><\/pre>\n\n\n\n<h4 class=\"wp-block-heading\">Combining Selectors<\/h4>\n\n\n\n<p>You can combine multiple selectors to create more specific targeting.<\/p>\n\n\n\n<p><strong>Descendant Selector:<\/strong><\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>div p {\n    color: blue;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all <code>&lt;p&gt;<\/code> elements inside <code>&lt;div&gt;<\/code> elements will be styled with blue text.<\/p>\n\n\n\n<p><strong>Child Selector:<\/strong><\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>div &gt; p {\n    color: red;\n}<\/code><\/pre>\n\n\n\n<p>In this example, all <code>&lt;p&gt;<\/code> elements that are direct children of <code>&lt;div&gt;<\/code> elements will be styled with red text.<\/p>\n\n\n\n<p><strong>Adjacent Sibling Selector:<\/strong><\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code>h1 + p {\n    color: green;\n}<\/code><\/pre>\n\n\n\n<p>In this example, the <code>&lt;p&gt;<\/code> element immediately following an <code>&lt;h1&gt;<\/code> element will be styled with green text.<\/p>\n\n\n\n<h4 class=\"wp-block-heading\">Conclusion<\/h4>\n\n\n\n<p>Understanding CSS selectors is crucial for effective web design. By mastering these basic selectors, you can target and style your HTML elements with precision. Practice using different selectors to see how they affect your web pages, and soon you&#8217;ll be able to create beautifully styled websites with ease.<\/p>\n\n\n\n<p>Happy coding!<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Mastering CSS Selectors: A Beginner&#8217;s Guide CSS selectors are an essential part of web development, allowing you to apply styles [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"default","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[16],"tags":[],"class_list":["post-41","post","type-post","status-publish","format-standard","hentry","category-css"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>CSS Selectors - Web Development Course<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/shaplakanon.com\/wdc\/css-selectors\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CSS Selectors - Web Development Course\" \/>\n<meta property=\"og:description\" content=\"Mastering CSS Selectors: A Beginner&#8217;s Guide CSS selectors are an essential part of web development, allowing you to apply styles [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/shaplakanon.com\/wdc\/css-selectors\/\" \/>\n<meta property=\"og:site_name\" content=\"Web Development Course\" \/>\n<meta property=\"article:published_time\" content=\"2024-07-11T02:41:30+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-11T02:41:31+00:00\" \/>\n<meta name=\"author\" content=\"ShaplaKanon\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"ShaplaKanon\" \/>\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:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/\"},\"author\":{\"name\":\"ShaplaKanon\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\"},\"headline\":\"CSS Selectors\",\"datePublished\":\"2024-07-11T02:41:30+00:00\",\"dateModified\":\"2024-07-11T02:41:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/\"},\"wordCount\":554,\"commentCount\":0,\"articleSection\":[\"CSS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/\",\"name\":\"CSS Selectors - Web Development Course\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#website\"},\"datePublished\":\"2024-07-11T02:41:30+00:00\",\"dateModified\":\"2024-07-11T02:41:31+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/css-selectors\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"CSS Selectors\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#website\",\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\",\"name\":\"Web Development Course\",\"description\":\"Become a Web Developer from Home\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/#\\\/schema\\\/person\\\/f5f224239283c27426dadc2e4cc9a825\",\"name\":\"ShaplaKanon\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g\",\"caption\":\"ShaplaKanon\"},\"sameAs\":[\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/\"],\"url\":\"https:\\\/\\\/shaplakanon.com\\\/wdc\\\/author\\\/sabahat\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"CSS Selectors - Web Development Course","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:\/\/shaplakanon.com\/wdc\/css-selectors\/","og_locale":"en_US","og_type":"article","og_title":"CSS Selectors - Web Development Course","og_description":"Mastering CSS Selectors: A Beginner&#8217;s Guide CSS selectors are an essential part of web development, allowing you to apply styles [&hellip;]","og_url":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/","og_site_name":"Web Development Course","article_published_time":"2024-07-11T02:41:30+00:00","article_modified_time":"2024-07-11T02:41:31+00:00","author":"ShaplaKanon","twitter_card":"summary_large_image","twitter_misc":{"Written by":"ShaplaKanon","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/#article","isPartOf":{"@id":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/"},"author":{"name":"ShaplaKanon","@id":"https:\/\/shaplakanon.com\/wdc\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825"},"headline":"CSS Selectors","datePublished":"2024-07-11T02:41:30+00:00","dateModified":"2024-07-11T02:41:31+00:00","mainEntityOfPage":{"@id":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/"},"wordCount":554,"commentCount":0,"articleSection":["CSS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/shaplakanon.com\/wdc\/css-selectors\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/","url":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/","name":"CSS Selectors - Web Development Course","isPartOf":{"@id":"https:\/\/shaplakanon.com\/wdc\/#website"},"datePublished":"2024-07-11T02:41:30+00:00","dateModified":"2024-07-11T02:41:31+00:00","author":{"@id":"https:\/\/shaplakanon.com\/wdc\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825"},"breadcrumb":{"@id":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/shaplakanon.com\/wdc\/css-selectors\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/shaplakanon.com\/wdc\/css-selectors\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/shaplakanon.com\/wdc\/"},{"@type":"ListItem","position":2,"name":"CSS Selectors"}]},{"@type":"WebSite","@id":"https:\/\/shaplakanon.com\/wdc\/#website","url":"https:\/\/shaplakanon.com\/wdc\/","name":"Web Development Course","description":"Become a Web Developer from Home","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/shaplakanon.com\/wdc\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/shaplakanon.com\/wdc\/#\/schema\/person\/f5f224239283c27426dadc2e4cc9a825","name":"ShaplaKanon","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/ef2c8f93a0558c2047555f674c8746b22988ace93eba9262d198d0a28236ce97?s=96&d=mm&r=g","caption":"ShaplaKanon"},"sameAs":["https:\/\/shaplakanon.com\/wdc\/"],"url":"https:\/\/shaplakanon.com\/wdc\/author\/sabahat\/"}]}},"_links":{"self":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts\/41","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/comments?post=41"}],"version-history":[{"count":1,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts\/41\/revisions"}],"predecessor-version":[{"id":42,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/posts\/41\/revisions\/42"}],"wp:attachment":[{"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/media?parent=41"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/categories?post=41"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/shaplakanon.com\/wdc\/wp-json\/wp\/v2\/tags?post=41"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}