{"id":3664,"date":"2022-10-08T01:29:24","date_gmt":"2022-10-07T20:29:24","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3664"},"modified":"2022-10-08T01:29:26","modified_gmt":"2022-10-07T20:29:26","slug":"make-a-random-quote-generator-using-html5-css3-javascript","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/","title":{"rendered":"Make a Random Quote Generator using HTML5, CSS3 &#038; JavaScript"},"content":{"rendered":"\n<p>In this tutorial, I will teach you\u00a0<strong>how to create a Random Quote Generator<\/strong>\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this <strong>JavaScript Random Quote Generator<\/strong> project is given below.<\/p>\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;Random Quote Generator&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;link rel=&quot;stylesheet&quot; href=&quot;https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/font-awesome\/5.15.3\/css\/all.min.css&quot;\/&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    &lt;div class=&quot;wrapper&quot;&gt;\n      &lt;header&gt;Quote of the Day&lt;\/header&gt;\n      &lt;div class=&quot;content&quot;&gt;\n        &lt;div class=&quot;quote-area&quot;&gt;\n          &lt;i class=&quot;fas fa-quote-left&quot;&gt;&lt;\/i&gt;\n          &lt;p class=&quot;quote&quot;&gt;Never give up because you never know if the next try is going to be the one that works.&lt;\/p&gt;\n          &lt;i class=&quot;fas fa-quote-right&quot;&gt;&lt;\/i&gt;\n        &lt;\/div&gt;\n        &lt;div class=&quot;author&quot;&gt;\n          &lt;span&gt;__&lt;\/span&gt;\n          &lt;span class=&quot;name&quot;&gt;Mary Kay Ash&lt;\/span&gt;\n        &lt;\/div&gt;\n      &lt;\/div&gt;\n      &lt;div class=&quot;buttons&quot;&gt;\n        &lt;div class=&quot;features&quot;&gt;\n          &lt;ul&gt;\n            &lt;li class=&quot;speech&quot;&gt;&lt;i class=&quot;fas fa-volume-up&quot;&gt;&lt;\/i&gt;&lt;\/li&gt;\n            &lt;li class=&quot;copy&quot;&gt;&lt;i class=&quot;fas fa-copy&quot;&gt;&lt;\/i&gt;&lt;\/li&gt;\n            &lt;li class=&quot;twitter&quot;&gt;&lt;i class=&quot;fab fa-twitter&quot;&gt;&lt;\/i&gt;&lt;\/li&gt;\n          &lt;\/ul&gt;\n          &lt;button&gt;New Quote&lt;\/button&gt;\n        &lt;\/div&gt;\n      &lt;\/div&gt;\n    &lt;\/div&gt;\n\n    &lt;script src=&quot;script.js&quot;&gt;&lt;\/script&gt;\n    \n  &lt;\/body&gt;\n&lt;\/html&gt;\n<\/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 quoteText = document.querySelector(&quot;.quote&quot;),\nquoteBtn = document.querySelector(&quot;button&quot;),\nauthorName = document.querySelector(&quot;.name&quot;),\nspeechBtn = document.querySelector(&quot;.speech&quot;),\ncopyBtn = document.querySelector(&quot;.copy&quot;),\ntwitterBtn = document.querySelector(&quot;.twitter&quot;),\nsynth = speechSynthesis;\n\nfunction randomQuote(){\n    quoteBtn.classList.add(&quot;loading&quot;);\n    quoteBtn.innerText = &quot;Loading Quote...&quot;;\n    fetch(&quot;http:\/\/api.quotable.io\/random&quot;).then(response =&gt; response.json()).then(result =&gt; {\n        quoteText.innerText = result.content;\n        authorName.innerText = result.author;\n        quoteBtn.classList.remove(&quot;loading&quot;);\n        quoteBtn.innerText = &quot;New Quote&quot;;\n    });\n}\n\nspeechBtn.addEventListener(&quot;click&quot;, ()=&gt;{\n    if(!quoteBtn.classList.contains(&quot;loading&quot;)){\n        let utterance = new SpeechSynthesisUtterance(`${quoteText.innerText} by ${authorName.innerText}`);\n        synth.speak(utterance);\n        setInterval(()=&gt;{\n            !synth.speaking ? speechBtn.classList.remove(&quot;active&quot;) : speechBtn.classList.add(&quot;active&quot;);\n        }, 10);\n    }\n});\n\ncopyBtn.addEventListener(&quot;click&quot;, ()=&gt;{\n    navigator.clipboard.writeText(quoteText.innerText);\n});\n\ntwitterBtn.addEventListener(&quot;click&quot;, ()=&gt;{\n    let tweetUrl = `https:\/\/twitter.com\/intent\/tweet?url=${quoteText.innerText}`;\n    window.open(tweetUrl, &quot;_blank&quot;);\n});\n\nquoteBtn.addEventListener(&quot;click&quot;, randomQuote);<\/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;700&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  justify-content: center;\n  min-height: 100vh;\n  background: #5372F0;\n}\n.wrapper{\n  width: 605px;\n  background: #fff;\n  border-radius: 15px;\n  padding: 30px 30px 25px;\n  box-shadow: 0 12px 35px rgba(0,0,0,0.1);\n}\nheader, .content :where(i, p, span){\n  color: #202842;\n}\n.wrapper header{\n  font-size: 35px;\n  font-weight: 600;\n  text-align: center;\n}\n.wrapper .content{\n  margin: 35px 0;\n}\n.content .quote-area{\n  display: flex;\n  justify-content: center;\n}\n.quote-area i{\n  font-size: 15px;\n}\n.quote-area i:first-child{\n  margin: 3px 10px 0 0;\n}\n.quote-area i:last-child{\n  display: flex;\n  margin: 0 0 3px 10px;\n  align-items: flex-end;\n}\n.quote-area .quote{\n  font-size: 22px;\n  text-align: center;\n  word-break: break-all;\n}\n.content .author{\n  display: flex;\n  font-size: 18px;\n  margin-top: 20px;\n  font-style: italic;\n  justify-content: flex-end;\n}\n.author span:first-child{\n  margin: -7px 5px 0 0;\n  font-family: monospace;\n}\n.wrapper .buttons{\n  border-top: 1px solid #ccc;\n}\n.buttons .features{\n  display: flex;\n  margin-top: 20px;\n  align-items: center;\n  justify-content: space-between;\n}\n.features ul{\n  display: flex;\n}\n.features ul li{\n  margin: 0 5px;\n  height: 47px;\n  width: 47px;\n  display: flex;\n  cursor: pointer;\n  color: #5372F0;\n  list-style: none;\n  border-radius: 50%;\n  align-items: center;\n  justify-content: center;\n  border: 2px solid #5372F0;\n  transition: all 0.3s ease;\n}\n.features ul li:first-child{\n  margin-left: 0;\n}\nul li:is(:hover, .active){\n  color: #fff;\n  background: #5372F0;\n}\nul .speech.active{\n  pointer-events: none;\n}\n.buttons button{\n  border: none;\n  color: #fff;\n  outline: none;\n  font-size: 16px;\n  cursor: pointer;\n  padding: 13px 22px;\n  border-radius: 30px;\n  background: #5372F0;\n}\n.buttons button.loading{\n  opacity: 0.7;\n  pointer-events: none;\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you\u00a0how to create a Random Quote Generator\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Random Quote Generator project is given below. index.html script.js style.css<\/p>\n","protected":false},"author":1,"featured_media":3666,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3664","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>Make a Random Quote Generator using HTML5, CSS3 &amp; JavaScript<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you\u00a0how to create a Random Quote Generator\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript\" \/>\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\/make-a-random-quote-generator-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=\"Make a Random Quote Generator using HTML5, CSS3 &amp; JavaScript\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you\u00a0how to create a Random Quote Generator\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-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-07T20:29:24+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-07T20:29:26+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Random-Quote-Generator-in-HTML-CSS-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=\"2 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Make a Random Quote Generator using HTML5, CSS3 & JavaScript","description":"In this tutorial, I will teach you\u00a0how to create a Random Quote Generator\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript","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\/make-a-random-quote-generator-using-html5-css3-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Make a Random Quote Generator using HTML5, CSS3 & JavaScript","og_description":"In this tutorial, I will teach you\u00a0how to create a Random Quote Generator\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript","og_url":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-07T20:29:24+00:00","article_modified_time":"2022-10-07T20:29:26+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Random-Quote-Generator-in-HTML-CSS-JavaScript.jpg","type":"image\/jpeg"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Make a Random Quote Generator using HTML5, CSS3 &#038; JavaScript","datePublished":"2022-10-07T20:29:24+00:00","dateModified":"2022-10-07T20:29:26+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/"},"wordCount":48,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Random-Quote-Generator-in-HTML-CSS-JavaScript.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/","url":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/","name":"Make a Random Quote Generator using HTML5, CSS3 & JavaScript","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Random-Quote-Generator-in-HTML-CSS-JavaScript.jpg","datePublished":"2022-10-07T20:29:24+00:00","dateModified":"2022-10-07T20:29:26+00:00","description":"In this tutorial, I will teach you\u00a0how to create a Random Quote Generator\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Random-Quote-Generator-in-HTML-CSS-JavaScript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Build-A-Random-Quote-Generator-in-HTML-CSS-JavaScript.jpg","width":880,"height":495,"caption":"Make a Random Quote Generator using HTML5, CSS3 & JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/make-a-random-quote-generator-using-html5-css3-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Make a Random Quote Generator 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\/3664","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=3664"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3664\/revisions"}],"predecessor-version":[{"id":3665,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3664\/revisions\/3665"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3666"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3664"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3664"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3664"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}