{"id":10574,"date":"2024-03-03T10:30:00","date_gmt":"2024-03-03T10:30:00","guid":{"rendered":"https:\/\/codehim.com\/?p=10574"},"modified":"2024-03-04T08:30:44","modified_gmt":"2024-03-04T03:30:44","slug":"login-form-with-background-image-in-html-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/","title":{"rendered":"Login Form With Background Image In HTML CSS"},"content":{"rendered":"<p>This code creates a stylish login form with a background image using HTML and CSS. The form includes input fields for a username and password, a &#8220;Keep me Signed in&#8221; checkbox, and a &#8220;Sign In&#8221; button. The background image dynamically changes, providing an aesthetic appeal. The form design is enhanced with a modern color scheme and font. This code helps create an engaging and visually appealing login interface for websites or applications.<\/p>\n<h2>How to Create Login Form With Background Image In HTML CSS<\/h2>\n<p>1. Ensure you have the <a href=\"https:\/\/fonts.google.com\/specimen\/Montserrat\" target=\"_blank\" rel=\"noopener\">Montserrat font<\/a> by adding the following link to the <code>&lt;head&gt;<\/code> section of your HTML file.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link href='https:\/\/fonts.googleapis.com\/css?family=Montserrat' rel='stylesheet' type='text\/css'&gt;<\/pre>\n<p>2. Create the basic HTML structure for the login form. Include input fields for username and password, a &#8220;Keep me Signed in&#8221; checkbox, and a &#8220;Sign In&#8221; button. Don&#8217;t forget to add a link for password recovery.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"login\"&gt;\r\n  &lt;h2 class=\"active\"&gt; sign in &lt;\/h2&gt;\r\n\r\n  &lt;h2 class=\"nonactive\"&gt; sign up &lt;\/h2&gt;\r\n  &lt;form&gt;\r\n   \r\n    \r\n\r\n    &lt;input type=\"text\" class=\"text\" name=\"username\"&gt;\r\n     &lt;span&gt;username&lt;\/span&gt;\r\n\r\n    &lt;br&gt;\r\n    \r\n    &lt;br&gt;\r\n\r\n    &lt;input type=\"password\" class=\"text\" name=\"password\"&gt;\r\n    &lt;span&gt;password&lt;\/span&gt;\r\n    &lt;br&gt;\r\n\r\n    &lt;input type=\"checkbox\" id=\"checkbox-1-1\" class=\"custom-checkbox\" \/&gt;\r\n    &lt;label for=\"checkbox-1-1\"&gt;Keep me Signed in&lt;\/label&gt;\r\n    \r\n    &lt;button class=\"signin\"&gt;\r\n      Sign In\r\n    &lt;\/button&gt;\r\n\r\n\r\n    &lt;hr&gt;\r\n\r\n    &lt;a href=\"#\"&gt;Forgot Password?&lt;\/a&gt;\r\n  &lt;\/form&gt;\r\n\r\n&lt;\/div&gt;<\/pre>\n<p>3. Copy and paste the provided CSS code into your stylesheet. This code styles the login form, sets the background image dynamically, and adds modern aesthetics to the design.<\/p>\n<pre class=\"prettyprint linenums lang-css\">body,\r\n.signin {\r\n  background-color: #d3d3d3;\r\n  font-family: 'Montserrat', sans-serif;\r\n  color: #fff;\r\n  font-size: 14px;\r\n  letter-spacing: 1px;\r\n}\r\n.cd__main{\r\n   min-height: 720px;\r\n   position: relative;\r\n}\r\n.login {\r\n  position: relative;\r\n  height: 560px;\r\n  width: 405px;\r\n  margin: auto;\r\n  padding: 60px 60px;\r\n  background: url(https:\/\/source.unsplash.com\/1280x720\/?nature) no-repeat   center center #505050;   \r\n  background-size: cover;\r\n  box-shadow: 0px 30px 60px -5px #000;\r\n}\r\n\r\nform {\r\n  padding-top: 80px;\r\n}\r\n\r\n.active {\r\n  border-bottom: 2px solid #1161ed;\r\n}\r\n\r\n.nonactive {\r\n  color: rgba(255, 255, 255, 0.2);\r\n}\r\n\r\nh2 {\r\n  padding-left: 12px;\r\n  font-size: 22px;\r\n  text-transform: uppercase;\r\n  padding-bottom: 5px;\r\n  letter-spacing: 2px;\r\n  display: inline-block;\r\n  font-weight: 100;\r\n}\r\n\r\nh2:first-child {\r\n  padding-left: 0px;\r\n}\r\n\r\nspan {\r\n  text-transform: uppercase;\r\n  font-size: 12px;\r\n  opacity: 0.4; \r\n  display: inline-block;\r\n  position: relative;\r\n  top: -65px;\r\n  transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.text {\r\n  border: none;\r\n  width: 89%;\r\n  padding: 10px 20px;\r\n  display: block;\r\n  height: 15px;\r\n  border-radius: 20px;\r\n  background: rgba(255, 255, 255, 0.1);\r\n  border: 2px solid rgba(255, 255, 255, 0);\r\n  overflow: hidden;\r\n  margin-top: 15px;\r\n  transition: all 0.5s ease-in-out;\r\n}\r\n\r\n.text:focus {\r\n  outline: 0;\r\n  border: 2px solid rgba(255, 255, 255, 0.5);\r\n  border-radius: 20px;\r\n  background: rgba(0, 0, 0, 0);\r\n}\r\n\r\n.text:focus + span {\r\n  opacity: 0.6;\r\n}\r\n\r\ninput[type=\"text\"],\r\ninput[type=\"password\"] {\r\n  font-family: 'Montserrat', sans-serif;\r\n  color: #fff;\r\n}\r\n\r\n\r\n\r\ninput {\r\n  display: inline-block;\r\n  padding-top: 20px;\r\n  font-size: 14px;\r\n}\r\n\r\nh2,\r\nspan,\r\n.custom-checkbox {\r\n  margin-left: 20px;\r\n}\r\n\r\n.custom-checkbox {\r\n  -webkit-appearance: none;\r\n  background-color: rgba(255, 255, 255, 0.1);\r\n  padding: 8px;\r\n  border-radius: 2px;\r\n  display: inline-block;\r\n  position: relative;\r\n  top: 6px;\r\n}\r\n\r\n.custom-checkbox:checked {\r\n  background-color: rgba(17, 97, 237, 1);\r\n}\r\n\r\n.custom-checkbox:checked:after {\r\n  content: '\\2714';\r\n  font-size: 10px;\r\n  position: absolute;\r\n  top: 1px;\r\n  left: 4px;\r\n  color: #fff;\r\n}\r\n\r\n.custom-checkbox:focus {\r\n  outline: none;\r\n}\r\n\r\nlabel {\r\n  display: inline-block;\r\n  padding-top: 10px;\r\n  padding-left: 5px;\r\n}\r\n\r\n.signin {\r\n  background-color: #1161ed;\r\n  color: #FFF;\r\n  width: 100%;\r\n  padding: 10px 20px;\r\n  display: block;\r\n  height: 39px;\r\n  border-radius: 20px;\r\n  margin-top: 30px;\r\n  transition: all 0.5s ease-in-out;\r\n  border: none;\r\n  text-transform: uppercase;\r\n}\r\n\r\n.signin:hover {\r\n  background: #4082f5;\r\n  box-shadow: 0px 4px 35px -5px #4082f5;\r\n  cursor: pointer;\r\n}\r\n\r\n.signin:focus {\r\n  outline: none;\r\n}\r\n\r\nhr {\r\n  border: 1px solid rgba(255, 255, 255, 0.1);\r\n  top: 85px;\r\n  position: relative;\r\n}\r\n\r\n.login a {\r\n  text-align: center;\r\n  display: block;\r\n  top: 120px;\r\n  position: relative;\r\n  text-decoration: none;\r\n  color: rgba(255, 255, 255, 0.2);\r\n}<\/pre>\n<p>Replace the placeholder background image URL in the CSS code with the desired image link to personalize your login form&#8217;s appearance.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created a Login Form With a Background Image. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a stylish login form with a background image using HTML and CSS. The form includes input fields&#8230;<\/p>\n","protected":false},"author":1,"featured_media":10587,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[232],"tags":[],"class_list":["post-10574","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-forms"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Login Form With Background Image In HTML CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Login Form With Background Image In HTML CSS. 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\/forms\/login-form-with-background-image-in-html-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Login Form With Background Image In HTML CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Login Form With Background Image In HTML CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/\" \/>\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-03-03T10:30:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-03-04T03:30:44+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.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\/forms\/login-form-with-background-image-in-html-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Login Form With Background Image In HTML CSS\",\"datePublished\":\"2024-03-03T10:30:00+00:00\",\"dateModified\":\"2024-03-04T03:30:44+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/\"},\"wordCount\":223,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png\",\"articleSection\":[\"Forms\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/\",\"url\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/\",\"name\":\"Login Form With Background Image In HTML CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png\",\"datePublished\":\"2024-03-03T10:30:00+00:00\",\"dateModified\":\"2024-03-04T03:30:44+00:00\",\"description\":\"Here is a free code snippet to create a Login Form With Background Image In HTML CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Login Form With Background Image In HTML CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Forms\",\"item\":\"https:\/\/codehim.com\/category\/forms\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Login Form With Background Image In HTML CSS\"}]},{\"@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":"Login Form With Background Image In HTML CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Login Form With Background Image In HTML CSS. 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\/forms\/login-form-with-background-image-in-html-css\/","og_locale":"en_US","og_type":"article","og_title":"Login Form With Background Image In HTML CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Login Form With Background Image In HTML CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-03-03T10:30:00+00:00","article_modified_time":"2024-03-04T03:30:44+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.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\/forms\/login-form-with-background-image-in-html-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Login Form With Background Image In HTML CSS","datePublished":"2024-03-03T10:30:00+00:00","dateModified":"2024-03-04T03:30:44+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/"},"wordCount":223,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png","articleSection":["Forms"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/","url":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/","name":"Login Form With Background Image In HTML CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png","datePublished":"2024-03-03T10:30:00+00:00","dateModified":"2024-03-04T03:30:44+00:00","description":"Here is a free code snippet to create a Login Form With Background Image In HTML CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2024\/01\/Login-Form-With-Background-Image-In-HTML-CSS.png","width":1280,"height":960,"caption":"Login Form With Background Image In HTML CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/forms\/login-form-with-background-image-in-html-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Forms","item":"https:\/\/codehim.com\/category\/forms\/"},{"@type":"ListItem","position":3,"name":"Login Form With Background Image In HTML CSS"}]},{"@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":6700,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10574","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=10574"}],"version-history":[{"count":1,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10574\/revisions"}],"predecessor-version":[{"id":11277,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/10574\/revisions\/11277"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/10587"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=10574"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=10574"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=10574"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}