{"id":6225,"date":"2024-01-11T16:40:00","date_gmt":"2024-01-11T16:40:00","guid":{"rendered":"https:\/\/codehim.com\/?p=6225"},"modified":"2024-01-22T14:43:23","modified_gmt":"2024-01-22T09:43:23","slug":"javascript-clock-with-milliseconds","status":"publish","type":"post","link":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/","title":{"rendered":"JavaScript Clock with Milliseconds"},"content":{"rendered":"<p>This JavaScript code snippet helps you to create a digital clock with date, day, time, and milliseconds. It comes with real-time updating seconds and milliseconds.<\/p>\n<p>You can use this <a href=\"https:\/\/codehim.com\/date-time\/css-and-javascript-digital-clock-widget\/\" target=\"_blank\" rel=\"noopener\">digital clock widget<\/a> for limited-time offers, and time games\/quizzes. Similarly, you can use this snippet to create a live clock app that displays date and time with milliseconds online.<\/p>\n<p>Basically, there are no configuration options in JavaScript, anyhow the clock widget can be highly customized with CSS.<\/p>\n<h2>JavaScript Clock with Milliseconds<\/h2>\n<p>1. In HTML, create a div element with an id <code>\"timedate\"<\/code> and place the anchor (or span) elements with a unique id for months, days, years, hours, minutes, seconds, and milliseconds. Wrap all these elements into a section tag and define its class name <code>\"clock-bg\"<\/code>. So, the complete HTML structure for the digital clock is as follows:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;section class=\"clock-bg\"&gt;\r\n  &lt;div id=\"timedate\"&gt;\r\n    &lt;a id=\"mon\"&gt;January&lt;\/a&gt;\r\n    &lt;a id=\"d\"&gt;1&lt;\/a&gt;,\r\n    &lt;a id=\"y\"&gt;2045&lt;\/a&gt;&lt;br \/&gt;\r\n    &lt;a id=\"h\"&gt;12&lt;\/a&gt; :\r\n    &lt;a id=\"m\"&gt;00&lt;\/a&gt;:\r\n    &lt;a id=\"s\"&gt;00&lt;\/a&gt;:\r\n    &lt;a id=\"mi\"&gt;000&lt;\/a&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/section&gt;  \r\n<\/pre>\n<p>2. After that, select the <code>\"clock-bg\"<\/code> class and define CSS styles. Basically, this is the container class for the digital clock. You can set the custom size and background color according to your needs.<\/p>\n<p>On the other hand, the <code>\"#timedate\"<\/code> id is the wrapper element of date, time, and milliseconds. Define the font, margin, color, and padding properties as mentioned below.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.clock-bg{\r\n    background: #41295a;  \/* fallback for old browsers *\/\r\n    background: -webkit-linear-gradient(to right, #2F0743, #41295a);  \/* Chrome 10-25, Safari 5.1-6 *\/\r\n    background: linear-gradient(to right, #2F0743, #41295a); \/* W3C, IE 10+\/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ *\/ \r\n    max-width: 600px;\r\n    margin: 10px auto;\r\n}\r\n\r\n#timedate {\r\n  font: small-caps lighter 43px\/150% \"Segoe UI\", Frutiger, \"Frutiger Linotype\", \"Dejavu Sans\", \"Helvetica Neue\", Arial, sans-serif;\r\n  text-align:left;\r\n  width: 50%;\r\n  margin: 40px auto;\r\n  color:#fff;\r\n  border-left: 3px solid #ed1f24;\r\n  padding: 20px;\r\n}\r\n<\/pre>\n<p>3. Finally, add the following JavaScript function before closing the body tag and done.<\/p>\n<pre class=\"prettyprint linenums lang-js\">Number.prototype.pad = function(n) {\r\n  for (var r = this.toString(); r.length &lt; n; r = 0 + r);\r\n  return r;\r\n};\r\n\r\nfunction updateClock() {\r\n  var now = new Date();\r\n  var milli = now.getMilliseconds(),\r\n    sec = now.getSeconds(),\r\n    min = now.getMinutes(),\r\n    hou = now.getHours(),\r\n    mo = now.getMonth(),\r\n    dy = now.getDate(),\r\n    yr = now.getFullYear();\r\n  var months = [\"January\", \"February\", \"March\", \"April\", \"May\", \"June\", \"July\", \"August\", \"September\", \"October\", \"November\", \"December\"];\r\n  var tags = [\"mon\", \"d\", \"y\", \"h\", \"m\", \"s\", \"mi\"],\r\n    corr = [months[mo], dy, yr, hou.pad(2), min.pad(2), sec.pad(2), milli];\r\n  for (var i = 0; i &lt; tags.length; i++)\r\n    document.getElementById(tags[i]).firstChild.nodeValue = corr[i];\r\n}\r\n\r\nfunction initClock() {\r\n  updateClock();\r\n  window.setInterval(\"updateClock()\", 1);\r\n}\r\ninitClock();\r\n<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this clock widget into your project. If you have any questions or facing any issues, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This JavaScript code snippet helps you to create a digital clock with date, day, time, and milliseconds. It comes with&#8230;<\/p>\n","protected":false},"author":1,"featured_media":6228,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[58],"tags":[87,88],"class_list":["post-6225","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-date-time","tag-analog-clocks","tag-digital-clocks"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>JavaScript Clock with Milliseconds &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a lightweight JavaScript code snippet to create clock with milliseconds. You can view demo and download code for digital clock.\" \/>\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\/date-time\/javascript-clock-with-milliseconds\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"JavaScript Clock with Milliseconds &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a lightweight JavaScript code snippet to create clock with milliseconds. You can view demo and download code for digital clock.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/\" \/>\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-11T16:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:43:23+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.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\/date-time\/javascript-clock-with-milliseconds\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"JavaScript Clock with Milliseconds\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:43:23+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/\"},\"wordCount\":238,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png\",\"keywords\":[\"Analog Clocks\",\"Digital Clocks\"],\"articleSection\":[\"Date &amp; Time\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/\",\"url\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/\",\"name\":\"JavaScript Clock with Milliseconds &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:43:23+00:00\",\"description\":\"Here is a lightweight JavaScript code snippet to create clock with milliseconds. You can view demo and download code for digital clock.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png\",\"width\":1280,\"height\":960,\"caption\":\"JavaScript Clock with Milliseconds\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Date &amp; Time\",\"item\":\"https:\/\/codehim.com\/category\/date-time\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"JavaScript Clock with Milliseconds\"}]},{\"@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":"JavaScript Clock with Milliseconds &#8212; CodeHim","description":"Here is a lightweight JavaScript code snippet to create clock with milliseconds. You can view demo and download code for digital clock.","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\/date-time\/javascript-clock-with-milliseconds\/","og_locale":"en_US","og_type":"article","og_title":"JavaScript Clock with Milliseconds &#8212; CodeHim","og_description":"Here is a lightweight JavaScript code snippet to create clock with milliseconds. You can view demo and download code for digital clock.","og_url":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:40:00+00:00","article_modified_time":"2024-01-22T09:43:23+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.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\/date-time\/javascript-clock-with-milliseconds\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"JavaScript Clock with Milliseconds","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:43:23+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/"},"wordCount":238,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png","keywords":["Analog Clocks","Digital Clocks"],"articleSection":["Date &amp; Time"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/","url":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/","name":"JavaScript Clock with Milliseconds &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:43:23+00:00","description":"Here is a lightweight JavaScript code snippet to create clock with milliseconds. You can view demo and download code for digital clock.","breadcrumb":{"@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2022\/04\/javascript-clock-with-milliseconds.png","width":1280,"height":960,"caption":"JavaScript Clock with Milliseconds"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/date-time\/javascript-clock-with-milliseconds\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Date &amp; Time","item":"https:\/\/codehim.com\/category\/date-time\/"},{"@type":"ListItem","position":3,"name":"JavaScript Clock with Milliseconds"}]},{"@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":4653,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6225","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=6225"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/6225\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/6228"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=6225"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=6225"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=6225"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}