{"id":9700,"date":"2024-01-10T18:06:00","date_gmt":"2024-01-10T18:06:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9700"},"modified":"2024-01-22T16:07:12","modified_gmt":"2024-01-22T11:07:12","slug":"slideshow-html-code-for-website","status":"publish","type":"post","link":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/","title":{"rendered":"Slideshow HTML Code For Website"},"content":{"rendered":"<p>This HTML code snippet helps you to create an image slideshow on your website. It uses CSS and JavaScript to create a slideshow that automatically advances every 5 seconds. The user can also manually advance the slideshow using the arrow buttons. The slideshow is responsive, so it will look good on all devices.<\/p>\n<p>This code can be used to create a <a href=\"https:\/\/codehim.com\/carousel\/simple-auto-playing-slideshow\/\" target=\"_blank\" rel=\"noopener\">simple slideshow<\/a> for your website. You can customize the code to meet your specific needs, such as changing the design or adding new features.<\/p>\n<h2>How to Create Slideshow in HTML For Your Website<\/h2>\n<p>1. First of all, load the <a href=\"https:\/\/fontawesome.com\" target=\"_blank\" rel=\"noopener\">Font Awesome CSS<\/a> by adding the following CDN link to the head tag of your website.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link href=\"https:\/\/use.fontawesome.com\/releases\/v5.0.8\/css\/all.css\" rel=\"stylesheet\"&gt;<\/pre>\n<p>2. Copy the following container div structure HTML code. This will be the container for your slideshow, complete with left and right arrow buttons and dot indicators. Replace the image URLs with your desired image URLs. Ensure that each image has the same structure to maintain consistency.<\/p>\n<pre class=\"prettyprint linenums lang-html\"> &lt;div class=\"container\"&gt;\r\n      &lt;div class=\"arrow arrow-left\"&gt;&lt;i class=\"fas fa-chevron-circle-left\"&gt;&lt;\/i&gt;&lt;\/div&gt;\r\n      &lt;img src=\"https:\/\/images.unsplash.com\/photo-1518640027989-a30d5d7e498e?ixlib=rb-0.3.5&amp;q=85&amp;fm=jpg&amp;crop=entropy&amp;cs=srgb&amp;ixid=eyJhcHBfaWQiOjE0NTg5fQ&amp;s=f9575732a498c98486879d7000ab1d47\" alt=\"\"&gt;\r\n      &lt;img src=\"https:\/\/images.unsplash.com\/photo-1505843378597-b96befae716e?ixlib=rb-0.3.5&amp;q=85&amp;fm=jpg&amp;crop=entropy&amp;cs=srgb&amp;ixid=eyJhcHBfaWQiOjE0NTg5fQ&amp;s=9e69634f39ec7c08514fef902cfc85ac\" alt=\"\"&gt;\r\n      &lt;img src=\"https:\/\/images.unsplash.com\/photo-1471138406156-7a89e687a062?ixlib=rb-0.3.5&amp;q=85&amp;fm=jpg&amp;crop=entropy&amp;cs=srgb&amp;ixid=eyJhcHBfaWQiOjE0NTg5fQ&amp;s=7820fc816715b37942a793360b785c60\" alt=\"\"&gt;\r\n      &lt;div class=\"arrow arrow-right\"&gt;&lt;i class=\"fas fa-chevron-circle-right\"&gt;&lt;\/i&gt;\r\n      &lt;\/div&gt;\r\n      &lt;div class=\"dots\"&gt;\r\n        &lt;div class=\"dot\"&gt;\r\n          &lt;i class=\"far fa-dot-circle\"&gt;&lt;\/i&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"dot\"&gt;\r\n          &lt;i class=\"far fa-circle\"&gt;&lt;\/i&gt;\r\n        &lt;\/div&gt;\r\n        &lt;div class=\"dot\"&gt;\r\n          &lt;i class=\"far fa-circle\"&gt;&lt;\/i&gt;\r\n        &lt;\/div&gt;\r\n      &lt;\/div&gt;\r\n    &lt;\/div&gt;<\/pre>\n<p>3. Style the slideshow using the following CSS code. You can modify the CSS rules in order to customize the slideshow according to your needs.<\/p>\n<pre class=\"prettyprint linenums lang-css\">* {\r\n  margin: 0;\r\n  padding: 0;\r\n  box-sizing: border-box;\r\n}\r\n\r\nbody, html {\r\n  width: 100%;\r\n  height: 100%;\r\n}\r\n\r\n.container {\r\n  width: 100%;\r\n  height: 100%;\r\n  position: relative;\r\n  background: #355C7D;\r\n  \/* fallback for old browsers *\/\r\n  background: -webkit-linear-gradient(to right, #C06C84, #6C5B7B, #355C7D);\r\n  \/* Chrome 10-25, Safari 5.1-6 *\/\r\n  background: linear-gradient(to right, #C06C84, #6C5B7B, #355C7D);\r\n  \/* W3C, IE 10+\/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *\/\r\n  overflow: hidden;\r\n}\r\n.container img {\r\n  width: 100%;\r\n  height: 100%;\r\n  object-fit: cover;\r\n  position: absolute;\r\n  margin: auto;\r\n  top: 0;\r\n  bottom: 0;\r\n  left: 0;\r\n  right: 0;\r\n  animation: fade 1s;\r\n}\r\n.container .arrow {\r\n  z-index: 10;\r\n  position: absolute;\r\n  margin: auto;\r\n  top: 0;\r\n  bottom: 0;\r\n  left: auto;\r\n  right: auto;\r\n  width: 1.5rem;\r\n  height: 1.5rem;\r\n  font-size: 1.5rem;\r\n  color: cornsilk;\r\n  opacity: 0.5;\r\n  transition: opacity 1s;\r\n}\r\n.container .arrow:hover {\r\n  cursor: pointer;\r\n  opacity: 1;\r\n}\r\n.container .arrow-left {\r\n  left: 2%;\r\n}\r\n.container .arrow-right {\r\n  right: 2%;\r\n}\r\n.container .dots {\r\n  position: absolute;\r\n  margin: auto;\r\n  top: auto;\r\n  bottom: 2%;\r\n  left: 0;\r\n  right: 0;\r\n  width: 7rem;\r\n  height: auto;\r\n  z-index: 5;\r\n}\r\n.container .dots .dot {\r\n  width: 2rem;\r\n  height: 2rem;\r\n  display: inline-flex;\r\n  align-content: center;\r\n  justify-content: center;\r\n  color: cornsilk;\r\n}\r\n\r\n@keyframes fade {\r\n  from {\r\n    opacity: 0.1;\r\n  }\r\n  to {\r\n    opacity: 1;\r\n  }\r\n}<\/pre>\n<p>4. Finally, add the JavaScript code to enable slideshow navigation. This includes handling left and right arrow clicks, updating the displayed image, and implementing an automatic slideshow.<\/p>\n<pre class=\"prettyprint linenums lang-js\">const imgs = document.querySelectorAll(\".container img\");\r\nconst dots = document.querySelectorAll(\".dot i\");\r\nconst leftArrow = document.querySelector(\".arrow-left\");\r\nconst rightArrow = document.querySelector(\".arrow-right\");\r\n\r\nlet currentIndex = 0;\r\nlet time = 5000; \/\/ default time for auto slideshow\r\n\r\nconst defClass = (startPos, index) =&gt; {\r\n  for (let i = startPos; i &lt; imgs.length; i++) {\r\n    imgs[i].style.display = \"none\";\r\n    dots[i].classList.remove(\"fa-dot-circle\");\r\n    dots[i].classList.add(\"fa-circle\");\r\n  }\r\n  imgs[index].style.display = \"block\";\r\n  dots[index].classList.add(\"fa-dot-circle\");\r\n};\r\n\r\ndefClass(1, 0);\r\n\r\nleftArrow.addEventListener(\"click\", function(){\r\n  currentIndex &lt;= 0 ? currentIndex = imgs.length-1 : currentIndex--;\r\n  defClass(0, currentIndex);\r\n});\r\n\r\nrightArrow.addEventListener(\"click\", function(){\r\n  currentIndex &gt;= imgs.length-1 ? currentIndex = 0 : currentIndex++;\r\n  defClass(0, currentIndex);\r\n});\r\n\r\nconst startAutoSlide = () =&gt; {\r\n  setInterval(() =&gt; {\r\n    currentIndex &gt;= imgs.length-1 ? currentIndex = 0 : currentIndex++;\r\n    defClass(0, currentIndex);\r\n  }, time);\r\n};\r\n\r\nstartAutoSlide(); \/\/ Start the slideshow<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this Slideshow HTML code on your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This HTML code snippet helps you to create an image slideshow on your website. It uses CSS and JavaScript to&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9712,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[59],"tags":[79,66],"class_list":["post-9700","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>Slideshow HTML Code For Website &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Slideshow HTML Code For Website. 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\/slideshow-html-code-for-website\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Slideshow HTML Code For Website &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Slideshow HTML Code For Website. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/\" \/>\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:06:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:07:12+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.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=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Slideshow HTML Code For Website\",\"datePublished\":\"2024-01-10T18:06:00+00:00\",\"dateModified\":\"2024-01-22T11:07:12+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/\"},\"wordCount\":242,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png\",\"keywords\":[\"Image Sliders\",\"Slideshow\"],\"articleSection\":[\"Carousel\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/\",\"url\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/\",\"name\":\"Slideshow HTML Code For Website &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png\",\"datePublished\":\"2024-01-10T18:06:00+00:00\",\"dateModified\":\"2024-01-22T11:07:12+00:00\",\"description\":\"Here is a free code snippet to create a Slideshow HTML Code For Website. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png\",\"width\":1280,\"height\":960,\"caption\":\"Slideshow HTML Code For Website\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#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\":\"Slideshow HTML Code For Website\"}]},{\"@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":"Slideshow HTML Code For Website &#8212; CodeHim","description":"Here is a free code snippet to create a Slideshow HTML Code For Website. 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\/slideshow-html-code-for-website\/","og_locale":"en_US","og_type":"article","og_title":"Slideshow HTML Code For Website &#8212; CodeHim","og_description":"Here is a free code snippet to create a Slideshow HTML Code For Website. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T18:06:00+00:00","article_modified_time":"2024-01-22T11:07:12+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.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":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Slideshow HTML Code For Website","datePublished":"2024-01-10T18:06:00+00:00","dateModified":"2024-01-22T11:07:12+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/"},"wordCount":242,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png","keywords":["Image Sliders","Slideshow"],"articleSection":["Carousel"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/","url":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/","name":"Slideshow HTML Code For Website &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png","datePublished":"2024-01-10T18:06:00+00:00","dateModified":"2024-01-22T11:07:12+00:00","description":"Here is a free code snippet to create a Slideshow HTML Code For Website. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Slideshow-HTML-Code-For-Website.png","width":1280,"height":960,"caption":"Slideshow HTML Code For Website"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/carousel\/slideshow-html-code-for-website\/#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":"Slideshow HTML Code For Website"}]},{"@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":1339,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9700","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=9700"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9700\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9712"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}