{"id":8822,"date":"2024-01-10T17:56:00","date_gmt":"2024-01-10T17:56:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8822"},"modified":"2024-01-22T15:56:28","modified_gmt":"2024-01-22T10:56:28","slug":"dynamic-semi-circle-progress-bar-css","status":"publish","type":"post","link":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/","title":{"rendered":"Dynamic Semi Circle Progress Bar CSS"},"content":{"rendered":"<p>This code creates a dynamic semi-circle progress bar using HTML, CSS, and JavaScript. It visually represents progress as a filled semi-circle and displays points earned within a specified range. This is helpful for tracking and displaying progress or achievements on websites or applications.<\/p>\n<p>You can use this code on your website or app to showcase progress or achievements, engaging users visually. It offers a dynamic and eye-catching way to display point-based milestones, enhancing user experience. Additionally, its customizable CSS allows seamless integration with your website&#8217;s design.<\/p>\n<h2>How to Create Dynamic Semi-Circle Progress Bar Css<\/h2>\n<p>1. Begin by adding the necessary HTML structure to your webpage. You can place this code wherever you want the progress bar to appear.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"widget\"&gt;\r\n  &lt;div class=\"progress-container\"&gt;\r\n    &lt;div class=\"progress-bar\" id=\"loyalty\"&gt;\r\n      &lt;div class=\"points\"&gt;points&lt;\/div&gt;\r\n    &lt;\/div&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>2. Next, apply the CSS styles to make the progress bar visually appealing and fit your website&#8217;s design. Customize colors, sizes, and fonts to match your preferences.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.progress-container {\r\n  position: relative;\r\n}\r\n\r\n.progress-bar {\r\n}\r\n\r\n.progress-bar:before {\r\n  content: \"0\";\r\n  position: absolute;\r\n  left: 2px;\r\n  bottom: 60px;\r\n  font-size: 12px;\r\n  color: rgba(98, 107, 114, 1);\r\n}\r\n\r\n.progress-bar:after {\r\n  content: \"600\";\r\n  position: absolute;\r\n  right: -6px;\r\n  bottom: 60px;\r\n  font-size: 12px;\r\n  color: rgba(98, 107, 114, 1);\r\n}\r\n\r\n.widget {\r\n  padding: 25px;\r\n  margin: 0 auto;\r\n  width: 150px;\r\n  margin-top: 25px;\r\n  background-color: #fff;\r\n  -background-color: #222d3a;\r\n  border-radius: 5px;\r\n  box-shadow: 1px 1px 4px 0px rgba(0, 0, 0, 0.3);\r\n  position: relative;\r\n}\r\n\r\n.points {\r\n  position: absolute;\r\n  margin: 0 auto;\r\n  left: 0;\r\n  right: 0;\r\n  bottom: 60px;\r\n  text-align: center;\r\n  text-transform: uppercase;\r\n  color: rgba(98, 107, 114, 1);\r\n  font-size: 12px;\r\n}<\/pre>\n<p>3. Load the <a href=\"https:\/\/d3js.org\/\" target=\"_blank\" rel=\"noopener\">D3 JS<\/a> (charting library) by adding the following CDN link before closing the body tag:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;script src='\/\/cdnjs.cloudflare.com\/ajax\/libs\/d3\/3.5.5\/d3.min.js'&gt;&lt;\/script&gt;\r\n<\/pre>\n<p>4. Finally, include the JavaScript code to make the progress bar dynamic. This code calculates and animates the progress based on your specified values.<\/p>\n<pre class=\"prettyprint linenums lang-js\">var points = 450;\r\nvar maxPoints = 600;\r\nvar percent = points \/ maxPoints * 100;\r\nvar ratio = percent \/ 100;\r\nvar pie = d3.layout\r\n  .pie()\r\n  .value(function(d) {\r\n    return d;\r\n  })\r\n  .sort(null);\r\nvar w = 150,\r\n  h = 150;\r\nvar outerRadius = w \/ 2 - 10;\r\nvar innerRadius = 75;\r\nvar color = [\"#ececec\", \"rgba(156,78,176,1)\", \"#888888\"];\r\nvar colorOld = \"#F00\";\r\nvar colorNew = \"#0F0\";\r\nvar arc = d3.svg\r\n  .arc()\r\n  .innerRadius(innerRadius)\r\n  .outerRadius(outerRadius)\r\n  .startAngle(0)\r\n  .endAngle(Math.PI);\r\n\r\nvar arcLine = d3.svg\r\n  .arc()\r\n  .innerRadius(innerRadius)\r\n  .outerRadius(outerRadius)\r\n  .startAngle(0);\r\n\r\nvar svg = d3\r\n  .select(\"#loyalty\")\r\n  .append(\"svg\")\r\n  .attr({\r\n    width: w,\r\n    height: h,\r\n    class: \"shadow\"\r\n  })\r\n  .append(\"g\")\r\n  .attr({\r\n    transform: \"translate(\" + w \/ 2 + \",\" + h \/ 2 + \")\"\r\n  });\r\n\r\nvar path = svg\r\n  .append(\"path\")\r\n  .attr({\r\n    d: arc,\r\n    transform: \"rotate(-90)\"\r\n  })\r\n  .style({\r\n    fill: color[0]\r\n  });\r\n\r\nvar pathForeground = svg\r\n  .append(\"path\")\r\n  .datum({ endAngle: 0 })\r\n  .attr({\r\n    d: arcLine,\r\n    transform: \"rotate(-90)\"\r\n  })\r\n  .style({\r\n    fill: function(d, i) {\r\n      return color[1];\r\n    }\r\n  });\r\n\r\nvar middleCount = svg\r\n  .append(\"text\")\r\n  .datum(0)\r\n  .text(function(d) {\r\n    return d;\r\n  })\r\n  .attr({\r\n    class: \"middleText\",\r\n    \"text-anchor\": \"middle\",\r\n    dy: 0,\r\n    dx: 5\r\n  })\r\n  .style({\r\n    fill: d3.rgb(\"#000000\"),\r\n    \"font-size\": \"36px\"\r\n  });\r\n\r\nvar oldValue = 0;\r\nvar arcTween = function(transition, newValue, oldValue) {\r\n  \r\n  transition.attrTween(\"d\", function(d) {\r\n    var interpolate = d3.interpolate(d.endAngle, Math.PI * (newValue \/ 100));\r\n    var interpolateCount = d3.interpolate(oldValue, newValue);\r\n\r\n    return function(t) {\r\n      d.endAngle = interpolate(t);\r\n      \/\/ change percentage to points before rendering text\r\n      middleCount.text(Math.floor(interpolateCount(t)\/100*maxPoints));\r\n\r\n      return arcLine(d);\r\n    };\r\n  });\r\n};\r\n\r\npathForeground\r\n  .transition()\r\n  .duration(750)\r\n  .ease(\"cubic\")\r\n  .call(arcTween, percent, oldValue, points);<\/pre>\n<p>You can adjust the <code>points<\/code> and <code>maxPoints<\/code> variables to set your desired point values. Customize the CSS to change the appearance of the progress bar to match your website&#8217;s style.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully created a Semi Circle Progress Bar. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a dynamic semi-circle progress bar using HTML, CSS, and JavaScript. It visually represents progress as a filled&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8842,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[111],"tags":[],"class_list":["post-8822","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-chart-graph"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Dynamic Semi Circle Progress Bar CSS &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Dynamic Semi Circle Progress Bar 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\/chart-graph\/dynamic-semi-circle-progress-bar-css\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Dynamic Semi Circle Progress Bar CSS &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Dynamic Semi Circle Progress Bar CSS. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-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-01-10T17:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:56:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-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\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Dynamic Semi Circle Progress Bar CSS\",\"datePublished\":\"2024-01-10T17:56:00+00:00\",\"dateModified\":\"2024-01-22T10:56:28+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/\"},\"wordCount\":245,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png\",\"articleSection\":[\"Chart &amp; Graph\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/\",\"url\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/\",\"name\":\"Dynamic Semi Circle Progress Bar CSS &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png\",\"datePublished\":\"2024-01-10T17:56:00+00:00\",\"dateModified\":\"2024-01-22T10:56:28+00:00\",\"description\":\"Here is a free code snippet to create a Dynamic Semi Circle Progress Bar CSS. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png\",\"width\":1280,\"height\":960,\"caption\":\"Dynamic Semi Circle Progress Bar CSS\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Chart &amp; Graph\",\"item\":\"https:\/\/codehim.com\/category\/chart-graph\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Dynamic Semi Circle Progress Bar 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":"Dynamic Semi Circle Progress Bar CSS &#8212; CodeHim","description":"Here is a free code snippet to create a Dynamic Semi Circle Progress Bar 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\/chart-graph\/dynamic-semi-circle-progress-bar-css\/","og_locale":"en_US","og_type":"article","og_title":"Dynamic Semi Circle Progress Bar CSS &#8212; CodeHim","og_description":"Here is a free code snippet to create a Dynamic Semi Circle Progress Bar CSS. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T17:56:00+00:00","article_modified_time":"2024-01-22T10:56:28+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-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\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Dynamic Semi Circle Progress Bar CSS","datePublished":"2024-01-10T17:56:00+00:00","dateModified":"2024-01-22T10:56:28+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/"},"wordCount":245,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png","articleSection":["Chart &amp; Graph"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/","url":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/","name":"Dynamic Semi Circle Progress Bar CSS &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png","datePublished":"2024-01-10T17:56:00+00:00","dateModified":"2024-01-22T10:56:28+00:00","description":"Here is a free code snippet to create a Dynamic Semi Circle Progress Bar CSS. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Dynamic-Semi-Circle-Progress-Bar-CSS.png","width":1280,"height":960,"caption":"Dynamic Semi Circle Progress Bar CSS"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/chart-graph\/dynamic-semi-circle-progress-bar-css\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Chart &amp; Graph","item":"https:\/\/codehim.com\/category\/chart-graph\/"},{"@type":"ListItem","position":3,"name":"Dynamic Semi Circle Progress Bar 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":5896,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8822","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=8822"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8822\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8842"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8822"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8822"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8822"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}