{"id":8541,"date":"2024-01-19T17:54:00","date_gmt":"2024-01-19T17:54:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8541"},"modified":"2024-01-22T15:54:59","modified_gmt":"2024-01-22T10:54:59","slug":"bootstrap-5-password-strength-meter","status":"publish","type":"post","link":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/","title":{"rendered":"Bootstrap 5 Password Strength Meter"},"content":{"rendered":"<p>This Bootstrap 5 code snippet helps you to create a password input field with a strength meter. It visually indicates password strength. It assesses the password&#8217;s complexity and uses color-coded meter sections to show strength levels, helping you <a href=\"https:\/\/codehim.com\/text-input\/javascript-random-password-generator\/\" target=\"_blank\" rel=\"noopener\">create more secure passwords<\/a> effortlessly.<\/p>\n<p>You can implement this code in the password input field of your <a href=\"https:\/\/codehim.com\/collections\/login-page-in-html-with-css-code\/\" target=\"_blank\" rel=\"noopener\">registration or sign-up forms<\/a> to encourage users to create strong passwords when creating accounts.<\/p>\n<h2>How to Create Bootstrap 5 Password Strength Meter<\/h2>\n<p>1. First, make sure to include the <a href=\"https:\/\/getbootstrap.com\/\" target=\"_blank\" rel=\"noopener\">Bootstrap 5 CSS<\/a> and JavaScript libraries by adding the necessary CDN links to your HTML header.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel='stylesheet' href='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/css\/bootstrap.min.css'&gt;\r\n&lt;script src='https:\/\/cdn.jsdelivr.net\/npm\/@popperjs\/core@2.11.8\/dist\/umd\/popper.min.js'&gt;&lt;\/script&gt; \r\n&lt;script src='https:\/\/cdn.jsdelivr.net\/npm\/bootstrap@5.3.0\/dist\/js\/bootstrap.min.js'&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>2. Now, add the HTML structure to your web page. The following code demonstrates how to set up a simple password input field with the strength meter:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;body class=\"container-fluid bg-body-tertiary d-block\"&gt;\r\n    &lt;div class=\"row justify-content-center\"&gt;\r\n        &lt;div class=\"row justify-content-center\"&gt;\r\n            &lt;div class=\"col-12 col-md-6 col-lg-4\" style=\"min-width: 500px;\"&gt;\r\n                &lt;div class=\"card bg-white mb-5 mt-5 border-0\" style=\"box-shadow: 0 12px 15px rgba(0, 0, 0, 0.02);\"&gt;\r\n                    &lt;div class=\"card-body p-5\"&gt;\r\n    \r\n                        &lt;label for=\"password-input\" class=\"form-label fw-bold\"&gt;Password&lt;\/label&gt;\r\n                        &lt;input type=\"password\" class=\"form-control\" id=\"password-input\" autocomplete=\"off\"\r\n                               aria-autocomplete=\"list\"\r\n                               aria-label=\"Password\" aria-describedby=\"passwordHelp\"&gt;\r\n                        &lt;div class=\"password-meter\"&gt;\r\n                            &lt;div class=\"meter-section rounded me-2\"&gt;&lt;\/div&gt;\r\n                            &lt;div class=\"meter-section rounded me-2\"&gt;&lt;\/div&gt;\r\n                            &lt;div class=\"meter-section rounded me-2\"&gt;&lt;\/div&gt;\r\n                            &lt;div class=\"meter-section rounded\"&gt;&lt;\/div&gt;\r\n                        &lt;\/div&gt;\r\n                        &lt;div id=\"passwordHelp\" class=\"form-text text-muted\"&gt;Use 8 or more characters with a mix of\r\n                            letters, numbers &amp;\r\n                            symbols.\r\n                        &lt;\/div&gt;\r\n                    &lt;\/div&gt;\r\n                &lt;\/div&gt;\r\n            &lt;\/div&gt;\r\n        &lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n&lt;\/body&gt;<\/pre>\n<p>3. Add the following CSS code to style the password strength meter. This code defines the appearance of the meter sections and differentiates them based on strength.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.password-meter {\r\n    display: flex;\r\n    height: 5px;\r\n    margin-top: 10px;\r\n}\r\n\r\n.meter-section {\r\n    flex: 1;\r\n    background-color: #ddd;\r\n}\r\n\r\n.weak {\r\n    background-color: #ff4d4d;\r\n}\r\n\r\n.medium {\r\n    background-color: #ffd633;\r\n}\r\n\r\n.strong {\r\n    background-color: #00b300;\r\n}\r\n\r\n.very-strong {\r\n    background-color: #009900;\r\n}<\/pre>\n<p>4. To make the password strength meter functional, add the following JavaScript code. This code calculates the strength of the entered password and updates the meter sections accordingly.<\/p>\n<pre class=\"prettyprint linenums lang-js\">const passwordInput = document.getElementById('password-input');\r\nconst meterSections = document.querySelectorAll('.meter-section');\r\n\r\npasswordInput.addEventListener('input', updateMeter);\r\n\r\nfunction updateMeter() {\r\n    const password = passwordInput.value;\r\n    let strength = calculatePasswordStrength(password);\r\n\r\n    \/\/ Remove all strength classes\r\n    meterSections.forEach((section) =&gt; {\r\n        section.classList.remove('weak', 'medium', 'strong', 'very-strong');\r\n    });\r\n\r\n    \/\/ Add the appropriate strength class based on the strength value\r\n    if (strength &gt;= 1) {\r\n        meterSections[0].classList.add('weak');\r\n    }\r\n    if (strength &gt;= 2) {\r\n        meterSections[1].classList.add('medium');\r\n    }\r\n    if (strength &gt;= 3) {\r\n        meterSections[2].classList.add('strong');\r\n    }\r\n    if (strength &gt;= 4) {\r\n        meterSections[3].classList.add('very-strong');\r\n    }\r\n}\r\n\r\nfunction calculatePasswordStrength(password) {\r\n    const lengthWeight = 0.2;\r\n    const uppercaseWeight = 0.5;\r\n    const lowercaseWeight = 0.5;\r\n    const numberWeight = 0.7;\r\n    const symbolWeight = 1;\r\n\r\n    let strength = 0;\r\n\r\n    \/\/ Calculate the strength based on the password length\r\n    strength += password.length * lengthWeight;\r\n\r\n    \/\/ Calculate the strength based on uppercase letters\r\n    if (\/[A-Z]\/.test(password)) {\r\n        strength += uppercaseWeight;\r\n    }\r\n\r\n    \/\/ Calculate the strength based on lowercase letters\r\n    if (\/[a-z]\/.test(password)) {\r\n        strength += lowercaseWeight;\r\n    }\r\n\r\n    \/\/ Calculate the strength based on numbers\r\n    if (\/\\d\/.test(password)) {\r\n        strength += numberWeight;\r\n    }\r\n\r\n    \/\/ Calculate the strength based on symbols\r\n    if (\/[^A-Za-z0-9]\/.test(password)) {\r\n        strength += symbolWeight;\r\n    }\r\n\r\n    return strength;\r\n}<\/pre>\n<p>That&#8217;s it! You&#8217;ve successfully implemented a Password Strength Meter. This tool enhances user security by guiding them to create stronger passwords. Feel free to customize the CSS styles to match your project&#8217;s design.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This Bootstrap 5 code snippet helps you to create a password input field with a strength meter. It visually indicates&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8558,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[123,97],"tags":[],"class_list":["post-8541","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bootstrap","category-text-input"],"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 Password Strength Meter &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Bootstrap 5 Password Strength Meter. 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\/text-input\/bootstrap-5-password-strength-meter\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Bootstrap 5 Password Strength Meter &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Bootstrap 5 Password Strength Meter. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/\" \/>\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-19T17:54:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:54:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.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\/text-input\/bootstrap-5-password-strength-meter\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Bootstrap 5 Password Strength Meter\",\"datePublished\":\"2024-01-19T17:54:00+00:00\",\"dateModified\":\"2024-01-22T10:54:59+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/\"},\"wordCount\":216,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png\",\"articleSection\":[\"Bootstrap\",\"Text &amp; Input\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/\",\"url\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/\",\"name\":\"Bootstrap 5 Password Strength Meter &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png\",\"datePublished\":\"2024-01-19T17:54:00+00:00\",\"dateModified\":\"2024-01-22T10:54:59+00:00\",\"description\":\"Here is a free code snippet to create a Bootstrap 5 Password Strength Meter. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png\",\"width\":1280,\"height\":960,\"caption\":\"Bootstrap 5 Password Strength Meter\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#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 Password Strength Meter\"}]},{\"@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 Password Strength Meter &#8212; CodeHim","description":"Here is a free code snippet to create a Bootstrap 5 Password Strength Meter. 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\/text-input\/bootstrap-5-password-strength-meter\/","og_locale":"en_US","og_type":"article","og_title":"Bootstrap 5 Password Strength Meter &#8212; CodeHim","og_description":"Here is a free code snippet to create a Bootstrap 5 Password Strength Meter. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-19T17:54:00+00:00","article_modified_time":"2024-01-22T10:54:59+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.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\/text-input\/bootstrap-5-password-strength-meter\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Bootstrap 5 Password Strength Meter","datePublished":"2024-01-19T17:54:00+00:00","dateModified":"2024-01-22T10:54:59+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/"},"wordCount":216,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png","articleSection":["Bootstrap","Text &amp; Input"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/","url":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/","name":"Bootstrap 5 Password Strength Meter &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png","datePublished":"2024-01-19T17:54:00+00:00","dateModified":"2024-01-22T10:54:59+00:00","description":"Here is a free code snippet to create a Bootstrap 5 Password Strength Meter. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/09\/Bootstrap-5-Password-Strength-Meter.png","width":1280,"height":960,"caption":"Bootstrap 5 Password Strength Meter"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/text-input\/bootstrap-5-password-strength-meter\/#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 Password Strength Meter"}]},{"@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":5872,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8541","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=8541"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8541\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8558"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8541"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8541"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8541"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}