{"id":29456,"date":"2015-11-04T06:07:09","date_gmt":"2015-11-04T00:37:09","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=29456"},"modified":"2017-09-12T12:45:21","modified_gmt":"2017-09-12T07:15:21","slug":"create-accordion-with-css-and-html-without-js","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/","title":{"rendered":"Create Accordion with CSS and HTML without JS"},"content":{"rendered":"<p>There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html.<\/p>\n<h3>Here is the image that show which type of accordion I am going to create.<\/h3>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-full wp-image-29458\" src=\"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/accordion.jpg\" alt=\"accordion\" width=\"300\" height=\"334\" \/><\/p>\n<h3>Now starts with html code:<\/h3>\n<p>In this I have used checkbox to use the functionality of click. But we will not display these input checkboxes. We can use display none to hide the checkbox. Also I am using label for tab1 and tab2 design.<\/p>\n<h3>HTML CODE:<\/h3>\n<p>[java]&lt;div id=&quot;nestle-section&quot;&gt;<br \/>\n\t&lt;input type=&quot;radio&quot; id=&quot;tab1&quot; name=&quot;tabs&quot; checked=&quot;&quot;\/&gt;<br \/>\n\t&lt;label for=&quot;tab1&quot;&gt;Tab1&lt;\/label&gt;<br \/>\n\t&lt;div class=&quot;tab-content1&quot;&gt;<br \/>\n\t\tLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It<br \/>\n\t&lt;\/div&gt;<\/p>\n<p>\t&lt;input type=&quot;radio&quot; id=&quot;tab2&quot; name=&quot;tabs&quot;\/&gt;<br \/>\n\t&lt;label for=&quot;tab2&quot;&gt;Tab2&lt;\/label&gt;<br \/>\n\t&lt;div class=&quot;tab-content1&quot;&gt;<br \/>\n\t\tLorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry&#8217;s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. It<br \/>\n\t&lt;\/div&gt;<br \/>\n&lt;\/div&gt;[\/java]<\/p>\n<h3>Css Code:<\/h3>\n<p>Styling of Tab1 and Tab2 label:<\/p>\n<p>[java]#nestle-section{<br \/>\n\tfloat:left;<br \/>\n\twidth:300px;<br \/>\n\tposition:relative;<br \/>\n}<br \/>\n#nestle-section label{<br \/>\n\tfloat:left;<br \/>\n\twidth:100%;<br \/>\n\tbackground:#333;<br \/>\n\tcolor:#fff;<br \/>\n\tpadding:5px 0;<br \/>\n\ttext-align:center;<br \/>\n\tcursor:pointer;<br \/>\n\tborder-bottom:1px solid #fff;<br \/>\n}[\/java]<\/p>\n<p>Styling of accordion content:<\/p>\n<p>[java]#nestle-section .tab-content1{<br \/>\n\tfloat:left;<br \/>\n\twidth:280px;<br \/>\n\tpadding:0 10px;<br \/>\n\theight:0;<br \/>\n\t-moz-transition: height 1s ease;<br \/>\n\t-webkit-transition: height 1s ease;<br \/>\n\t-o-transition: height 1s ease;<br \/>\n\ttransition: height 1s ease;<br \/>\n\toverflow:hidden;<br \/>\n}[\/java]<\/p>\n<p>Then I give the following style for accordion animation onclick of Tab1 and Tab2 labels:<\/p>\n<p>[java]#nestle-section  input:checked + label + .tab-content1{<br \/>\n\tpadding: 10px;<br \/>\n\theight: 150px;<br \/>\n\t-moz-transition: height 1s ease;<br \/>\n\t-webkit-transition: height 1s ease;<br \/>\n\t-o-transition: height 1s ease;<br \/>\n\ttransition: height 1s ease;<br \/>\n}<br \/>\n#nestle-section input:checked + label{<br \/>\n\tbackground:#ccc;<br \/>\n\tcolor:#333;<br \/>\n}[\/java]<\/p>\n<p>Then we hide the radio:<\/p>\n<p>[java]#nestle-section input{<br \/>\n\tdisplay:none;<br \/>\n}[\/java]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use [&hellip;]<\/p>\n","protected":false},"author":206,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":5,"footnotes":""},"categories":[3429,1],"tags":[2965,2966,2967,355,4842],"class_list":["post-29456","post","type-post","status-publish","format-standard","hentry","category-front-end-development","category-technology","tag-accordion-with-css","tag-accordion-with-css-and-html","tag-accordion-with-html","tag-css3","tag-html"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Amit Narayan\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"Create Accordion with CSS and HTML without JS | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Create Accordion with CSS and HTML without JS | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#article\",\"name\":\"Create Accordion with CSS and HTML without JS | TO THE NEW Blog\",\"headline\":\"Create Accordion with CSS and HTML without JS\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2015\\\/11\\\/accordion.jpg\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#articleImage\"},\"datePublished\":\"2015-11-04T06:07:09+05:30\",\"dateModified\":\"2017-09-12T12:45:21+05:30\",\"inLanguage\":\"en-US\",\"commentCount\":1,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#webpage\"},\"articleSection\":\"Front End Development, Technology, Accordion with CSS, Accordion with CSS and HTML, Accordion with HTML, CSS3, HTML\\\/UI\\\/CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#listItem\",\"name\":\"Create Accordion with CSS and HTML without JS\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#listItem\",\"position\":3,\"name\":\"Create Accordion with CSS and HTML without JS\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/\",\"name\":\"Amit Narayan\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/e87cd57b-529b-4c79-b4c0-f60b56c14d46_222-Amit-Narayan-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Amit Narayan\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/\",\"name\":\"Create Accordion with CSS and HTML without JS | TO THE NEW Blog\",\"description\":\"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/create-accordion-with-css-and-html-without-js\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\"},\"datePublished\":\"2015-11-04T06:07:09+05:30\",\"dateModified\":\"2017-09-12T12:45:21+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Create Accordion with CSS and HTML without JS | TO THE NEW Blog","description":"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use","canonical_url":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#article","name":"Create Accordion with CSS and HTML without JS | TO THE NEW Blog","headline":"Create Accordion with CSS and HTML without JS","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2015\/11\/accordion.jpg","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#articleImage"},"datePublished":"2015-11-04T06:07:09+05:30","dateModified":"2017-09-12T12:45:21+05:30","inLanguage":"en-US","commentCount":1,"mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#webpage"},"articleSection":"Front End Development, Technology, Accordion with CSS, Accordion with CSS and HTML, Accordion with HTML, CSS3, HTML\/UI\/CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/www.tothenew.com\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#listItem","name":"Create Accordion with CSS and HTML without JS"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#listItem","position":3,"name":"Create Accordion with CSS and HTML without JS","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/","name":"Amit Narayan","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/e87cd57b-529b-4c79-b4c0-f60b56c14d46_222-Amit-Narayan-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Amit Narayan"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/","name":"Create Accordion with CSS and HTML without JS | TO THE NEW Blog","description":"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author"},"datePublished":"2015-11-04T06:07:09+05:30","dateModified":"2017-09-12T12:45:21+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"Create Accordion with CSS and HTML without JS | TO THE NEW Blog","og:description":"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use","og:url":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"Create Accordion with CSS and HTML without JS | TO THE NEW Blog","twitter:description":"There are many way to create the accordion effect with js but following are the example of how to create the accordion only with css and html. Here is the image that show which type of accordion I am going to create. Now starts with html code: In this I have used checkbox to use","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"29456","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 16:29:04","updated":"2024-02-29 09:27:24","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tCreate Accordion with CSS and HTML without JS\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"Create Accordion with CSS and HTML without JS","link":"https:\/\/www.tothenew.com\/blog\/create-accordion-with-css-and-html-without-js\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/29456","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/206"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=29456"}],"version-history":[{"count":2,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/29456\/revisions"}],"predecessor-version":[{"id":51801,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/29456\/revisions\/51801"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=29456"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=29456"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=29456"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}