{"id":9751,"date":"2024-01-10T18:07:00","date_gmt":"2024-01-10T18:07:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9751"},"modified":"2024-01-22T16:09:31","modified_gmt":"2024-01-22T11:09:31","slug":"simple-image-slider-css-only","status":"publish","type":"post","link":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/","title":{"rendered":"Simple Image Slider CSS Only"},"content":{"rendered":"<p>This code creates a simple image slider using CSS only. It comes with a list of images that are displayed in a row. When the user hovers over the slider, the images will slide to the left, revealing the next image in the list. The user can also <a href=\"https:\/\/codehim.com\/vanilla-javascript\/javascript-onclick-fullscreen-image\/\" target=\"_blank\" rel=\"noopener\">click on the images to view them in full size<\/a>.<\/p>\n<p>The CSS code for the slider uses the <code class=\"\">:hover<\/code> pseudo-class to change the width of the <code class=\"\">li<\/code> elements. When the user hovers over the slider, the <code class=\"\">li<\/code> elements will become wider, revealing the next image in the list. The CSS code also uses the <code class=\"\">transition<\/code> property to create a smooth animation effect.<\/p>\n<h2>How to Create Simple Image Slider CSS Only<\/h2>\n<p>1. Copy the following HTML code, specifically the structure within the <code>&lt;div class=\"accord\"&gt;<\/code> element. This includes the <code>&lt;ul&gt;<\/code> list containing <code>&lt;li&gt;<\/code> items, each with a <code>&lt;div class=\"title\"&gt;<\/code> and an <code>&lt;img&gt;<\/code> tag. Replace the image sources in the <code>&lt;img&gt;<\/code> tags with URLs or paths to your desired images.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"accord\"&gt;\r\n\t\t&lt;ul&gt;\r\n\t\t\t&lt;li&gt;\r\n\t\t\t\t&lt;div class=\"title\"&gt;\r\n\t\t\t\t\t&lt;a href=\"#\"&gt;the style&lt;\/a&gt;\r\n\t\t\t\t&lt;\/div&gt;\r\n\t\t\t\t&lt;img src=\"https:\/\/p1.pxfuel.com\/preview\/1015\/988\/1021\/watch-fashion-accessories-objects.jpg\" alt=\"\"\/&gt;\r\n\t\t\t&lt;\/li&gt;\r\n\t\t\t&lt;li&gt;\r\n\t\t\t\t&lt;div class=\"title\"&gt;\r\n\t\t\t\t\t&lt;a href=\"#\"&gt;A leaf &lt;\/a&gt;\r\n\t\t\t\t&lt;\/div&gt;\r\n\t\t\t\t&lt;img src=\"https:\/\/p0.pxfuel.com\/preview\/248\/813\/143\/achievement-adult-battle-black.jpg\" alt=\"\"&gt;\r\n\t\t\t&lt;\/li&gt;\r\n\t\t\t&lt;li&gt;\r\n\t\t\t\t&lt;div class=\"title\"&gt;\r\n\t\t\t\t\t&lt;a href=\"#\"&gt;rose&lt;\/a&gt;\r\n\t\t\t\t&lt;\/div&gt;\r\n\t\t\t\t&lt;img src=\"https:\/\/p0.pxfuel.com\/preview\/990\/311\/594\/coffee-cup-mug-office.jpg\" alt=\"\"\/&gt;\r\n\t\t\t&lt;\/li&gt;\r\n\t\t\t&lt;li&gt;\r\n\t\t\t\t&lt;div class=\"title\"&gt;\r\n\t\t\t\t\t&lt;a href=\"#\"&gt;the water&lt;\/a&gt;\r\n\t\t\t\t&lt;\/div&gt;\r\n\t\t\t\t&lt;img src=\"https:\/\/p1.pxfuel.com\/preview\/259\/365\/195\/finger-pointing-hands-watch.jpg\" alt=\"\"\/&gt;\r\n\t\t\t&lt;\/li&gt;\r\n\t\t&lt;\/ul&gt;\r\n\t&lt;\/div&gt;<\/pre>\n<p>2. Add the following CSS styles within <code>&lt;style&gt;<\/code> tag or external CSS file in your project. Modify the width, height, and color attributes in the CSS code to match your project&#8217;s design. Adjust the dimensions of the slider, images, and any other elements to suit your layout preferences.<\/p>\n<pre class=\"prettyprint linenums lang-css\">* {\r\n  margin: 0;\r\n  padding: 0;\r\n  font-family:ubuntu;\r\n}\r\n\r\nbody {\r\n  background-color: #ff4d4d;\r\n}\r\n.accord {\r\n  width: 610px;\r\n  margin: auto;\r\n  margin-top: 100px;\r\n  height: 400px;\r\n  overflow: hidden;\r\n  border: white 3px solid;\r\n  background-color: white;\r\n  transition: all 0.8s ease;\r\n}\r\n.accord ul li {\r\n  width: 150px;\r\n  display: block;\r\n  float: left;\r\n  position: relative;\r\n  border-left: 2px solid white;\r\n  height: 400px;\r\n  transition: all 0.5s ease, opacity 0.2s ease;\r\n  opacity: 0.8;\r\n  backface-visibility: ;\r\n}\r\n.accord ul li img {\r\n  width: 300px;\r\n  height: inherit;\r\n}\r\n.title {\r\n  transition: all 0.5s ease-in;\r\n  position: absolute;\r\n  bottom: 0;\r\n  width: 300px;\r\n  display: block;\r\n  background-color: rgba(89, 89, 89, 0.4);\r\n}\r\n.title a {\r\n  font-size: 110%;\r\n  display: block;\r\n  text-transform: capitalize;\r\n  text-decoration: none;\r\n  padding: 20px;\r\n  color: white;\r\n}\r\n.accord:hover {\r\n  box-shadow: 6px 6px 10px 5px grey;\r\n  transform: scale(1.1, 1.1);\r\n}\r\n.accord ul:hover li {\r\n  width: 100px;\r\n}\r\n.accord ul li:hover {\r\n  width: 300px;\r\n  opacity: 1;\r\n}<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created a simple image slider using HTML and CSS only. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a simple image slider using CSS only. It comes with a list of images that are displayed&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9766,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[79,66],"class_list":["post-9751","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-carousel","tag-slider","tag-slideshow"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Simple Image Slider CSS Only &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Simple Image Slider CSS Only. You can view demo and download the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Simple Image Slider CSS Only &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Simple Image Slider CSS Only. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-10T18:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:09:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Simple Image Slider CSS Only\",\"datePublished\":\"2024-01-10T18:07:00+00:00\",\"dateModified\":\"2024-01-22T11:09:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\"},\"wordCount\":233,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png\",\"keywords\":[\"Image Sliders\",\"Slideshow\"],\"articleSection\":[\"Carousel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\",\"url\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\",\"name\":\"Simple Image Slider CSS Only &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png\",\"datePublished\":\"2024-01-10T18:07:00+00:00\",\"dateModified\":\"2024-01-22T11:09:31+00:00\",\"description\":\"Here is a free code snippet to create a Simple Image Slider CSS Only. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png\",\"width\":1280,\"height\":960,\"caption\":\"Simple Image Slider CSS Only\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Carousel\",\"item\":\"https:\/\/codehim.com\/category\/carousel\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Simple Image Slider CSS Only\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Simple Image Slider CSS Only &#8212; CodeHim","description":"Here is a free code snippet to create a Simple Image Slider CSS Only. You can view demo and download the source code.","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:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/","og_locale":"en_US","og_type":"article","og_title":"Simple Image Slider CSS Only &#8212; CodeHim","og_description":"Here is a free code snippet to create a Simple Image Slider CSS Only. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T18:07:00+00:00","article_modified_time":"2024-01-22T11:09:31+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Simple Image Slider CSS Only","datePublished":"2024-01-10T18:07:00+00:00","dateModified":"2024-01-22T11:09:31+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/"},"wordCount":233,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png","keywords":["Image Sliders","Slideshow"],"articleSection":["Carousel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/","url":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/","name":"Simple Image Slider CSS Only &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png","datePublished":"2024-01-10T18:07:00+00:00","dateModified":"2024-01-22T11:09:31+00:00","description":"Here is a free code snippet to create a Simple Image Slider CSS Only. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Simple-Image-Slider-CSS-Only.png","width":1280,"height":960,"caption":"Simple Image Slider CSS Only"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/carousel\/simple-image-slider-css-only\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Carousel","item":"https:\/\/codehim.com\/category\/carousel\/"},{"@type":"ListItem","position":3,"name":"Simple Image Slider CSS Only"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":19440,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9751","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=9751"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9751\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9766"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9751"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9751"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9751"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}