{"id":3622,"date":"2022-10-07T20:31:02","date_gmt":"2022-10-07T15:31:02","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3622"},"modified":"2022-10-07T20:31:05","modified_gmt":"2022-10-07T15:31:05","slug":"build-a-dynamic-calendar-using-html5-css3-javascript","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/","title":{"rendered":"Build a Dynamic Calendar using HTML5, CSS3 &#038; JavaScript"},"content":{"rendered":"\n<p>In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is given below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">HTML5, CSS3, JavaScript Calendar Source Code<\/h2>\n\n\n\n<h3 class=\"wp-block-heading\">index.html<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;htmlmixed&quot;,&quot;mime&quot;:&quot;text\/html&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;HTML&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;html&quot;}\">&lt;!DOCTYPE html&gt;\n&lt;html lang=&quot;en&quot; dir=&quot;ltr&quot;&gt;\n  &lt;head&gt;\n    &lt;meta charset=&quot;utf-8&quot;&gt;\n    &lt;title&gt;Dynamic Calendar JavaScript&lt;\/title&gt;\n    &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&quot;&gt;\n    &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n    &lt;!-- Google Font Link for Icons --&gt;\n    &lt;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/fonts.googleapis.com\/css2?family=Material+Symbols+Rounded:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200&quot;&gt;\n    &lt;script src=&quot;script.js&quot; defer&gt;&lt;\/script&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    &lt;div class=&quot;wrapper&quot;&gt;\n      &lt;header&gt;\n        &lt;p class=&quot;current-date&quot;&gt;&lt;\/p&gt;\n        &lt;div class=&quot;icons&quot;&gt;\n          &lt;span id=&quot;prev&quot; class=&quot;material-symbols-rounded&quot;&gt;chevron_left&lt;\/span&gt;\n          &lt;span id=&quot;next&quot; class=&quot;material-symbols-rounded&quot;&gt;chevron_right&lt;\/span&gt;\n        &lt;\/div&gt;\n      &lt;\/header&gt;\n      &lt;div class=&quot;calendar&quot;&gt;\n        &lt;ul class=&quot;weeks&quot;&gt;\n          &lt;li&gt;Sun&lt;\/li&gt;\n          &lt;li&gt;Mon&lt;\/li&gt;\n          &lt;li&gt;Tue&lt;\/li&gt;\n          &lt;li&gt;Wed&lt;\/li&gt;\n          &lt;li&gt;Thu&lt;\/li&gt;\n          &lt;li&gt;Fri&lt;\/li&gt;\n          &lt;li&gt;Sat&lt;\/li&gt;\n        &lt;\/ul&gt;\n        &lt;ul class=&quot;days&quot;&gt;&lt;\/ul&gt;\n      &lt;\/div&gt;\n    &lt;\/div&gt;\n    \n  &lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">script.js<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;javascript&quot;,&quot;mime&quot;:&quot;text\/javascript&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;JavaScript&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;js&quot;}\">const daysTag = document.querySelector(&quot;.days&quot;),\ncurrentDate = document.querySelector(&quot;.current-date&quot;),\nprevNextIcon = document.querySelectorAll(&quot;.icons span&quot;);\n\n\/\/ getting new date, current year and month\nlet date = new Date(),\ncurrYear = date.getFullYear(),\ncurrMonth = date.getMonth();\n\n\/\/ storing full name of all months in array\nconst months = [&quot;January&quot;, &quot;February&quot;, &quot;March&quot;, &quot;April&quot;, &quot;May&quot;, &quot;June&quot;, &quot;July&quot;,\n              &quot;August&quot;, &quot;September&quot;, &quot;October&quot;, &quot;November&quot;, &quot;December&quot;];\n\nconst renderCalendar = () =&gt; {\n    let firstDayofMonth = new Date(currYear, currMonth, 1).getDay(), \/\/ getting first day of month\n    lastDateofMonth = new Date(currYear, currMonth + 1, 0).getDate(), \/\/ getting last date of month\n    lastDayofMonth = new Date(currYear, currMonth, lastDateofMonth).getDay(), \/\/ getting last day of month\n    lastDateofLastMonth = new Date(currYear, currMonth, 0).getDate(); \/\/ getting last date of previous month\n    let liTag = &quot;&quot;;\n\n    for (let i = firstDayofMonth; i &gt; 0; i--) { \/\/ creating li of previous month last days\n        liTag += `&lt;li class=&quot;inactive&quot;&gt;${lastDateofLastMonth - i + 1}&lt;\/li&gt;`;\n    }\n\n    for (let i = 1; i &lt;= lastDateofMonth; i++) { \/\/ creating li of all days of current month\n        \/\/ adding active class to li if the current day, month, and year matched\n        let isToday = i === date.getDate() &amp;&amp; currMonth === new Date().getMonth() \n                     &amp;&amp; currYear === new Date().getFullYear() ? &quot;active&quot; : &quot;&quot;;\n        liTag += `&lt;li class=&quot;${isToday}&quot;&gt;${i}&lt;\/li&gt;`;\n    }\n\n    for (let i = lastDayofMonth; i &lt; 6; i++) { \/\/ creating li of next month first days\n        liTag += `&lt;li class=&quot;inactive&quot;&gt;${i - lastDayofMonth + 1}&lt;\/li&gt;`\n    }\n    currentDate.innerText = `${months[currMonth]} ${currYear}`; \/\/ passing current mon and yr as currentDate text\n    daysTag.innerHTML = liTag;\n}\nrenderCalendar();\n\nprevNextIcon.forEach(icon =&gt; { \/\/ getting prev and next icons\n    icon.addEventListener(&quot;click&quot;, () =&gt; { \/\/ adding click event on both icons\n        \/\/ if clicked icon is previous icon then decrement current month by 1 else increment it by 1\n        currMonth = icon.id === &quot;prev&quot; ? currMonth - 1 : currMonth + 1;\n\n        if(currMonth &lt; 0 || currMonth &gt; 11) { \/\/ if current month is less than 0 or greater than 11\n            \/\/ creating a new date of current year &amp; month and pass it as date value\n            date = new Date(currYear, currMonth);\n            currYear = date.getFullYear(); \/\/ updating current year with new date year\n            currMonth = date.getMonth(); \/\/ updating current month with new date month\n        } else {\n            date = new Date(); \/\/ pass the current date as date value\n        }\n        renderCalendar(); \/\/ calling renderCalendar function\n    });\n});<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">style.css<\/h3>\n\n\n\n<div class=\"wp-block-codemirror-blocks-code-block code-block\"><pre class=\"CodeMirror\" data-setting=\"{&quot;showPanel&quot;:true,&quot;languageLabel&quot;:&quot;language&quot;,&quot;fullScreenButton&quot;:true,&quot;copyButton&quot;:true,&quot;mode&quot;:&quot;css&quot;,&quot;mime&quot;:&quot;text\/css&quot;,&quot;theme&quot;:&quot;material&quot;,&quot;lineNumbers&quot;:true,&quot;styleActiveLine&quot;:true,&quot;lineWrapping&quot;:false,&quot;readOnly&quot;:true,&quot;fileName&quot;:&quot;&quot;,&quot;language&quot;:&quot;CSS&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;css&quot;}\">\/* Import Google font - Poppins *\/\n@import url('https:\/\/fonts.googleapis.com\/css2?family=Poppins:wght@400;500;600&amp;display=swap');\n*{\n  margin: 0;\n  padding: 0;\n  box-sizing: border-box;\n  font-family: 'Poppins', sans-serif;\n}\nbody{\n  display: flex;\n  align-items: center;\n  padding: 0 10px;\n  justify-content: center;\n  min-height: 100vh;\n  background: #9B59B6;\n}\n.wrapper{\n  width: 450px;\n  background: #fff;\n  border-radius: 10px;\n  box-shadow: 0 15px 40px rgba(0,0,0,0.12);\n}\n.wrapper header{\n  display: flex;\n  align-items: center;\n  padding: 25px 30px 10px;\n  justify-content: space-between;\n}\nheader .icons{\n  display: flex;\n}\nheader .icons span{\n  height: 38px;\n  width: 38px;\n  margin: 0 1px;\n  cursor: pointer;\n  color: #878787;\n  text-align: center;\n  line-height: 38px;\n  font-size: 1.9rem;\n  user-select: none;\n  border-radius: 50%;\n}\n.icons span:last-child{\n  margin-right: -10px;\n}\nheader .icons span:hover{\n  background: #f2f2f2;\n}\nheader .current-date{\n  font-size: 1.45rem;\n  font-weight: 500;\n}\n.calendar{\n  padding: 20px;\n}\n.calendar ul{\n  display: flex;\n  flex-wrap: wrap;\n  list-style: none;\n  text-align: center;\n}\n.calendar .days{\n  margin-bottom: 20px;\n}\n.calendar li{\n  color: #333;\n  width: calc(100% \/ 7);\n  font-size: 1.07rem;\n}\n.calendar .weeks li{\n  font-weight: 500;\n  cursor: default;\n}\n.calendar .days li{\n  z-index: 1;\n  cursor: pointer;\n  position: relative;\n  margin-top: 30px;\n}\n.days li.inactive{\n  color: #aaa;\n}\n.days li.active{\n  color: #fff;\n}\n.days li::before{\n  position: absolute;\n  content: &quot;&quot;;\n  left: 50%;\n  top: 50%;\n  height: 40px;\n  width: 40px;\n  z-index: -1;\n  border-radius: 50%;\n  transform: translate(-50%, -50%);\n}\n.days li.active::before{\n  background: #9B59B6;\n}\n.days li:not(.active):hover::before{\n  background: #f2f2f2;\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is given below. HTML5, CSS3, JavaScript Calendar Source Code index.html script.js style.css<\/p>\n","protected":false},"author":1,"featured_media":3624,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3622","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.5 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Build a Dynamic Calendar using HTML5, CSS3 &amp; JavaScript<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build a Dynamic Calendar using HTML5, CSS3 &amp; JavaScript\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-07T15:31:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-07T15:31:05+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Dynamic-Calendar-in-HTML-CSS-JavaScript-Calendar-in-JavaScript.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"880\" \/>\n\t<meta property=\"og:image:height\" content=\"495\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Furqan\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Furqan\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Build a Dynamic Calendar using HTML5, CSS3 & JavaScript","description":"In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is","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:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Build a Dynamic Calendar using HTML5, CSS3 & JavaScript","og_description":"In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is","og_url":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-07T15:31:02+00:00","article_modified_time":"2022-10-07T15:31:05+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Dynamic-Calendar-in-HTML-CSS-JavaScript-Calendar-in-JavaScript.jpg","type":"image\/jpeg"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Build a Dynamic Calendar using HTML5, CSS3 &#038; JavaScript","datePublished":"2022-10-07T15:31:02+00:00","dateModified":"2022-10-07T15:31:05+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/"},"wordCount":49,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Dynamic-Calendar-in-HTML-CSS-JavaScript-Calendar-in-JavaScript.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/","url":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/","name":"Build a Dynamic Calendar using HTML5, CSS3 & JavaScript","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Dynamic-Calendar-in-HTML-CSS-JavaScript-Calendar-in-JavaScript.jpg","datePublished":"2022-10-07T15:31:02+00:00","dateModified":"2022-10-07T15:31:05+00:00","description":"In this tutorial, I will teach you how to make a dynamic calendar using HTML5, CSS3, and JavaScript. The full source code of the JavaScript calendar is","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Dynamic-Calendar-in-HTML-CSS-JavaScript-Calendar-in-JavaScript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Dynamic-Calendar-in-HTML-CSS-JavaScript-Calendar-in-JavaScript.jpg","width":880,"height":495,"caption":"Build a Dynamic Calendar using HTML5, CSS3 & JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/build-a-dynamic-calendar-using-html5-css3-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Build a Dynamic Calendar using HTML5, CSS3 &#038; JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/www.edopedia.com\/blog\/#website","url":"https:\/\/www.edopedia.com\/blog\/","name":"Edopedia","description":"Coding\/Programming Blog","publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.edopedia.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.edopedia.com\/blog\/#organization","name":"Edopedia","url":"https:\/\/www.edopedia.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2017\/10\/edopedia_icon_text_10.jpg","width":400,"height":100,"caption":"Edopedia"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339","name":"Furqan","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e5e68aef3ad8f0b83d56f4953c512c8e57bd2e6dc64daec33b5d0495d9058f51?s=96&d=mm&r=g","caption":"Furqan"},"description":"Well. I've been working for the past three years as a web designer and developer. I have successfully created websites for small to medium sized companies as part of my freelance career. During that time I've also completed my bachelor's in Information Technology.","sameAs":["http:\/\/www.edopedia.com\/blog\/","trulyfurqan"],"url":"https:\/\/www.edopedia.com\/blog\/author\/furqan\/"}]}},"_links":{"self":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3622","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/comments?post=3622"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3622\/revisions"}],"predecessor-version":[{"id":3623,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3622\/revisions\/3623"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3624"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3622"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3622"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3622"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}