{"id":8546,"date":"2024-01-14T17:51:00","date_gmt":"2024-01-14T17:51:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8546"},"modified":"2024-01-22T15:53:57","modified_gmt":"2024-01-22T10:53:57","slug":"bootstrap-5-creative-header-template","status":"publish","type":"post","link":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/","title":{"rendered":"Bootstrap 5 Creative Header Template"},"content":{"rendered":"<p>This code is a Bootstrap 5 Creative Header Template. It creates a responsive header with a logo and a menu. It uses CSS for styling and JavaScript to enable a dynamic effect when you move your mouse or touch the screen. The header is designed to improve the visual appeal of a webpage.<\/p>\n<h2>How to Create Bootstrap 5 Creative Header<\/h2>\n<p>1. Start by including the <a href=\"https:\/\/getbootstrap.com\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 5 CSS<\/a> in the <code>&lt;head&gt;<\/code> section of your HTML file. This will provide the necessary styling for your header.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel='stylesheet' href='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.0.2\/dist\/css\/bootstrap.min.css'&gt;<\/pre>\n<p>2. Next, create the HTML structure for your header. This template consists of a <a href=\"https:\/\/codehim.com\/menu\/css-responsive-header-with-logo-and-menu\/\" target=\"_blank\" rel=\"noopener\">navigation bar with a logo and a menu<\/a>. You can copy and paste the following code into your HTML file:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;nav&gt;\r\n        &lt;div class=\"container\"&gt;\r\n            &lt;div class=\"row\"&gt;\r\n                &lt;div class=\"col-md-4 col-6\"&gt;\r\n                    &lt;div class=\"logo d-flex justify-content-start\"&gt;\r\n                        &lt;a href=\"#\"&gt;Joourney \r\n                            &lt;!-- &lt;i class=\"ri-moon-clear-line\"&gt;&lt;\/i&gt; --&gt;\r\n                        &lt;\/a&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n                &lt;div class=\"col-md-8 col-6 d-flex justify-content-end p-0 align-items-center\"&gt;\r\n                    &lt;div class=\"menu-wrapper\"&gt;\r\n                        &lt;ul&gt;\r\n                            &lt;li&gt;&lt;a href=\"#\"&gt;Home&lt;\/a&gt;&lt;\/li&gt;\r\n                            &lt;li&gt;&lt;a href=\"#\"&gt;About&lt;\/a&gt;&lt;\/li&gt;\r\n                            &lt;li&gt;&lt;a href=\"#\"&gt;Manifesto&lt;\/a&gt;&lt;\/li&gt;\r\n                            &lt;li&gt;&lt;a href=\"#\"&gt;Contacts&lt;\/a&gt;&lt;\/li&gt;\r\n                        &lt;\/ul&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/nav&gt;\r\n\r\n    &lt;div id=\"leftSide\" class=\"side\"&gt;\r\n        &lt;h2 class=\"title\"&gt;\r\n            Let\u2019s begin&lt;br&gt; the &lt;span class=\"fancy\"&gt;adventure&lt;\/span&gt; &#x1f680;\r\n        &lt;\/h2&gt;\r\n    &lt;\/div&gt;\r\n\r\n    &lt;div id=\"rightSide\" class=\"side\"&gt;\r\n        &lt;h2 class=\"title\"&gt;\r\n            Let\u2019s begin&lt;br&gt; the &lt;span class=\"fancy\"&gt;experience&lt;\/span&gt; &#x1fa90;\r\n        &lt;\/h2&gt;\r\n    &lt;\/div&gt;\r\n<\/pre>\n<p>3. Copy the following CSS code and include it in a separate CSS file (e.g., <code>styles.css<\/code>). This code is responsible for the styling of the header and the dynamic effect. You can customize the colors and fonts to match your website&#8217;s design.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@import url(\"https:\/\/fonts.googleapis.com\/css2?family=DM+Sans:wght@400;700&amp;display=swap\");\r\nbody {\r\n  -moz-osx-font-smoothing: grayscale;\r\n  -webkit-font-smoothing: antialiased;\r\n  text-rendering: geometricprecision;\r\n  text-rendering: optimizeLegibility;\r\n  text-align: center;\r\n  font-family: \"DM Sans\", sans-serif;\r\n}\r\n.side {\r\n  width: 100vw;\r\n  height: 100%;\r\n  display: grid;\r\n  place-items: center;\r\n  overflow: hidden;\r\n  position: absolute;\r\n}\r\n.side .title {\r\n  font-family: \"DM Sans\", sans-serif;\r\n  font-weight: 600;\r\n  font-size: 8vw;\r\n  margin: 0 15vw;\r\n  width: 70vw;\r\n}\r\n\r\n#leftSide {\r\n  background-color: #DC3535;\r\n  color: #3B3486;\r\n  z-index: 2;\r\n}\r\n#leftSide .fancy {\r\n  color: #f4d35e;\r\n}\r\n\r\n#rightSide {\r\n  background-color: #3B3486;\r\n  color: #DC3535;\r\n}\r\n#rightSide .fancy {\r\n  color: #f4d35e;\r\n}\r\n\r\nnav {\r\n  padding: 15px 0;\r\n  margin-bottom: -78px;\r\n  position: relative;\r\n  z-index: 30;\r\n}\r\nnav .logo a {\r\n  font-family: \"DM Sans\", sans-serif;\r\n  font-weight: 600;\r\n  font-size: 32px;\r\n  color: #fff;\r\n  text-decoration: none;\r\n}\r\nnav .logo i {\r\n  font-size: 24px;\r\n  margin-bottom: -5px;\r\n}\r\nnav .menu-wrapper {\r\n  display: flex;\r\n  justify-content: end;\r\n  align-items: center;\r\n}\r\nnav .menu-wrapper ul {\r\n  margin: 0;\r\n  padding: 0;\r\n  list-style: none;\r\n  display: flex;\r\n  justify-content: end;\r\n  align-items: center;\r\n}\r\nnav .menu-wrapper ul li {\r\n  margin-left: 2vw;\r\n}\r\nnav .menu-wrapper ul li a {\r\n  font-family: \"DM Sans\", sans-serif;\r\n  padding: 10px 20px;\r\n  background-color: rgba(255, 255, 255, 0.102);\r\n  border-radius: 5em;\r\n  font-weight: 400;\r\n  font-size: 18px;\r\n  color: #fff;\r\n  text-decoration: none;\r\n  transition: all 0.15s ease-in-out;\r\n}\r\nnav .menu-wrapper ul li a:hover {\r\n  background-color: rgba(255, 255, 255, 0);\r\n}<\/pre>\n<p>4. Now, load the Bootstrap JS by adding the following CDN link just before closing the body tag.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;script src='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.0.2\/dist\/js\/bootstrap.bundle.min.js'&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>5. Finally, add the following JavaScript code between &lt;script&gt; tag just after the Bootstrap JS. This code makes the header dynamic, with a sliding effect based on mouse or touch movement.<\/p>\n<pre class=\"prettyprint linenums lang-js\">const left  = document.getElementById(\"leftSide\");\r\n\r\nconst handleOnMove = e =&gt; {\r\n    const p = e.clientX \/ window.innerWidth * 100;\r\n\r\n    left.style.width = `${p}%`;\r\n}\r\n\r\ndocument.onmousemove = e =&gt; handleOnMove (e);\r\ndocument.ontouchmove = e =&gt; handleOnMove (e.touches[0]);<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this Bootstrap 5 Creative Header Template into your project. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code is a Bootstrap 5 Creative Header Template. It creates a responsive header with a logo and a menu&#8230;.<\/p>\n","protected":false},"author":1,"featured_media":8568,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123],"tags":[],"class_list":["post-8546","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Bootstrap 5 Creative Header Template &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Bootstrap 5 Creative Header Template. 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\/bootstrap\/bootstrap-5-creative-header-template\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap 5 Creative Header Template &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Bootstrap 5 Creative Header Template. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/\" \/>\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-14T17:51:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:53:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.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\/bootstrap\/bootstrap-5-creative-header-template\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap 5 Creative Header Template\",\"datePublished\":\"2024-01-14T17:51:00+00:00\",\"dateModified\":\"2024-01-22T10:53:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/\"},\"wordCount\":236,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png\",\"articleSection\":[\"Bootstrap\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/\",\"url\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/\",\"name\":\"Bootstrap 5 Creative Header Template &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png\",\"datePublished\":\"2024-01-14T17:51:00+00:00\",\"dateModified\":\"2024-01-22T10:53:57+00:00\",\"description\":\"Here is a free code snippet to create a Bootstrap 5 Creative Header Template. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png\",\"width\":1280,\"height\":960,\"caption\":\"Bootstrap 5 Creative Header Template\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Bootstrap\",\"item\":\"https:\/\/codehim.com\/category\/bootstrap\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Bootstrap 5 Creative Header Template\"}]},{\"@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":"Bootstrap 5 Creative Header Template &#8212; CodeHim","description":"Here is a free code snippet to create a Bootstrap 5 Creative Header Template. 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\/bootstrap\/bootstrap-5-creative-header-template\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap 5 Creative Header Template &#8212; CodeHim","og_description":"Here is a free code snippet to create a Bootstrap 5 Creative Header Template. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-14T17:51:00+00:00","article_modified_time":"2024-01-22T10:53:57+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.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\/bootstrap\/bootstrap-5-creative-header-template\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap 5 Creative Header Template","datePublished":"2024-01-14T17:51:00+00:00","dateModified":"2024-01-22T10:53:57+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/"},"wordCount":236,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png","articleSection":["Bootstrap"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/","url":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/","name":"Bootstrap 5 Creative Header Template &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png","datePublished":"2024-01-14T17:51:00+00:00","dateModified":"2024-01-22T10:53:57+00:00","description":"Here is a free code snippet to create a Bootstrap 5 Creative Header Template. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Creative-Header-Template.png","width":1280,"height":960,"caption":"Bootstrap 5 Creative Header Template"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/bootstrap\/bootstrap-5-creative-header-template\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Bootstrap","item":"https:\/\/codehim.com\/category\/bootstrap\/"},{"@type":"ListItem","position":3,"name":"Bootstrap 5 Creative Header Template"}]},{"@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":2362,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8546","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=8546"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8546\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8568"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8546"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8546"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8546"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}