{"id":3699,"date":"2022-10-08T13:39:21","date_gmt":"2022-10-08T08:39:21","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3699"},"modified":"2022-10-08T13:39:22","modified_gmt":"2022-10-08T08:39:22","slug":"how-to-make-a-word-scramble-game-in-html5-css3-javascript","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/","title":{"rendered":"How to Make a Word Scramble Game in HTML5, CSS3 &#038; JavaScript"},"content":{"rendered":"\n<p>In this tutorial, I will teach you\u00a0<strong>how to create a Word Scramble Game<\/strong>\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this <strong>JavaScript Word Scramble Game<\/strong> is given below.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">JavaScript Word Scramble Game 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;Word Scramble Game&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;script src=&quot;js\/words.js&quot; defer&gt;&lt;\/script&gt;\n    &lt;script src=&quot;js\/script.js&quot; defer&gt;&lt;\/script&gt;\n  &lt;\/head&gt;\n  &lt;body&gt;\n    &lt;div class=&quot;container&quot;&gt;\n        &lt;h2&gt;Word Scramble&lt;\/h2&gt;\n        &lt;div class=&quot;content&quot;&gt;\n            &lt;p class=&quot;word&quot;&gt;&lt;\/p&gt;\n            &lt;div class=&quot;details&quot;&gt;\n                &lt;p class=&quot;hint&quot;&gt;Hint: &lt;span&gt;&lt;\/span&gt;&lt;\/p&gt;\n                &lt;p class=&quot;time&quot;&gt;Time Left: &lt;span&gt;&lt;b&gt;30&lt;\/b&gt;s&lt;\/span&gt;&lt;\/p&gt;\n            &lt;\/div&gt;\n            &lt;input type=&quot;text&quot; spellcheck=&quot;false&quot; placeholder=&quot;Enter a valid word&quot;&gt;\n            &lt;div class=&quot;buttons&quot;&gt;\n                &lt;button class=&quot;refresh-word&quot;&gt;Refresh Word&lt;\/button&gt;\n                &lt;button class=&quot;check-word&quot;&gt;Check Word&lt;\/button&gt;\n            &lt;\/div&gt;\n        &lt;\/div&gt;\n    &lt;\/div&gt;\n  &lt;\/body&gt;\n&lt;\/html&gt;<\/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  padding: 0 10px;\n  align-items: center;\n  justify-content: center;\n  min-height: 100vh;\n  background: #5372F0;\n}\n.container{\n  width: 440px;\n  border-radius: 7px;\n  background: #fff;\n  box-shadow: 0 10px 20px rgba(0,0,0,0.08);\n}\n.container h2{\n  font-size: 25px;\n  font-weight: 500;\n  padding: 16px 25px;\n  border-bottom: 1px solid #ccc;\n}\n.container .content{\n  margin: 25px 20px 35px;\n}\n.content .word{\n  user-select: none;\n  font-size: 33px;\n  font-weight: 500;\n  text-align: center;\n  letter-spacing: 24px;\n  margin-right: -24px;\n  word-break: break-all;\n  text-transform: uppercase;\n}\n.content .details{\n  margin: 25px 0 20px;\n}\n.details p{\n  font-size: 18px;\n  margin-bottom: 10px;\n}\n.details p b{\n  font-weight: 500;\n}\n.content input{\n  width: 100%;\n  height: 60px;\n  outline: none;\n  padding: 0 16px;\n  font-size: 18px;\n  border-radius: 5px;\n  border: 1px solid #bfbfbf;\n}\n.content input:focus{\n  box-shadow: 0px 2px 4px rgba(0,0,0,0.08);\n}\n.content input::placeholder{\n  color: #aaa;\n}\n.content input:focus::placeholder{\n  color: #bfbfbf;\n}\n.content .buttons{\n  display: flex;\n  margin-top: 20px;\n  justify-content: space-between;\n}\n.buttons button{\n  border: none;\n  outline: none;\n  color: #fff;\n  cursor: pointer;\n  padding: 15px 0;\n  font-size: 17px;\n  border-radius: 5px;\n  width: calc(100% \/ 2 - 8px);\n  transition: all 0.3s ease;\n}\n.buttons button:active{\n  transform: scale(0.97);\n}\n.buttons .refresh-word{\n  background: #6C757D;\n}\n.buttons .refresh-word:hover{\n  background: #5f666d;\n}\n.buttons .check-word{\n  background: #5372F0;\n}\n.buttons .check-word:hover{\n  background: #2c52ed;\n}\n\n@media screen and (max-width: 470px) {\n  .container h2{\n    font-size: 22px;\n    padding: 13px 20px;\n  }\n  .content .word{\n    font-size: 30px;\n    letter-spacing: 20px;\n    margin-right: -20px;\n  }\n  .container .content{\n    margin: 20px 20px 30px;\n  }\n  .details p{\n    font-size: 16px;\n    margin-bottom: 8px;\n  }\n  .content input{\n    height: 55px;\n    font-size: 17px;\n  }\n  .buttons button{\n    padding: 14px 0;\n    font-size: 16px;\n    width: calc(100% \/ 2 - 7px);\n  }\n}<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">js\/words.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;}\">let words = [\n    {\n        word: &quot;addition&quot;,\n        hint: &quot;The process of adding numbers&quot;\n    },\n    {\n        word: &quot;meeting&quot;,\n        hint: &quot;Event in which people come together&quot;\n    },\n    {\n        word: &quot;number&quot;,\n        hint: &quot;Math symbol used for counting&quot;\n    },\n    {\n        word: &quot;exchange&quot;,\n        hint: &quot;The act of trading&quot;\n    },\n    {\n        word: &quot;canvas&quot;,\n        hint: &quot;Piece of fabric for oil painting&quot;\n    },\n    {\n        word: &quot;garden&quot;,\n        hint: &quot;Space for planting flower and plant&quot;\n    },\n    {\n        word: &quot;position&quot;,\n        hint: &quot;Location of someone or something&quot;\n    },\n    {\n        word: &quot;feather&quot;,\n        hint: &quot;Hair like outer covering of bird&quot;\n    },\n    {\n        word: &quot;comfort&quot;,\n        hint: &quot;A pleasant feeling of relaxation&quot;\n    },\n    {\n        word: &quot;tongue&quot;,\n        hint: &quot;The muscular organ of mouth&quot;\n    },\n    {\n        word: &quot;expansion&quot;,\n        hint: &quot;The process of increase or grow&quot;\n    },\n    {\n        word: &quot;country&quot;,\n        hint: &quot;A politically identified region&quot;\n    },\n    {\n        word: &quot;group&quot;,\n        hint: &quot;A number of objects or persons&quot;\n    },\n    {\n        word: &quot;taste&quot;,\n        hint: &quot;Ability of tongue to detect flavour&quot;\n    },\n    {\n        word: &quot;store&quot;,\n        hint: &quot;Large shop where goods are traded&quot;\n    },\n    {\n        word: &quot;field&quot;,\n        hint: &quot;Area of land for farming activities&quot;\n    },\n    {\n        word: &quot;friend&quot;,\n        hint: &quot;Person other than a family member&quot;\n    },\n    {\n        word: &quot;pocket&quot;,\n        hint: &quot;A bag for carrying small items&quot;\n    },\n    {\n        word: &quot;needle&quot;,\n        hint: &quot;A thin and sharp metal pin&quot;\n    },\n    {\n        word: &quot;expert&quot;,\n        hint: &quot;Person with extensive knowledge&quot;\n    },\n    {\n        word: &quot;statement&quot;,\n        hint: &quot;A declaration of something&quot;\n    },\n    {\n        word: &quot;second&quot;,\n        hint: &quot;One-sixtieth of a minute&quot;\n    },\n    {\n        word: &quot;library&quot;,\n        hint: &quot;Place containing collection of books&quot;\n    },\n]<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">js\/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 wordText = document.querySelector(&quot;.word&quot;),\nhintText = document.querySelector(&quot;.hint span&quot;),\ntimeText = document.querySelector(&quot;.time b&quot;),\ninputField = document.querySelector(&quot;input&quot;),\nrefreshBtn = document.querySelector(&quot;.refresh-word&quot;),\ncheckBtn = document.querySelector(&quot;.check-word&quot;);\n\nlet correctWord, timer;\n\nconst initTimer = maxTime =&gt; {\n    clearInterval(timer);\n    timer = setInterval(() =&gt; {\n        if(maxTime &gt; 0) {\n            maxTime--;\n            return timeText.innerText = maxTime;\n        }\n        alert(`Time off! ${correctWord.toUpperCase()} was the correct word`);\n        initGame();\n    }, 1000);\n}\n\nconst initGame = () =&gt; {\n    initTimer(30);\n    let randomObj = words[Math.floor(Math.random() * words.length)];\n    let wordArray = randomObj.word.split(&quot;&quot;);\n    for (let i = wordArray.length - 1; i &gt; 0; i--) {\n        let j = Math.floor(Math.random() * (i + 1));\n        [wordArray[i], wordArray[j]] = [wordArray[j], wordArray[i]];\n    }\n    wordText.innerText = wordArray.join(&quot;&quot;);\n    hintText.innerText = randomObj.hint;\n    correctWord = randomObj.word.toLowerCase();;\n    inputField.value = &quot;&quot;;\n    inputField.setAttribute(&quot;maxlength&quot;, correctWord.length);\n}\ninitGame();\n\nconst checkWord = () =&gt; {\n    let userWord = inputField.value.toLowerCase();\n    if(!userWord) return alert(&quot;Please enter the word to check!&quot;);\n    if(userWord !== correctWord) return alert(`Oops! ${userWord} is not a correct word`);\n    alert(`Congrats! ${correctWord.toUpperCase()} is the correct word`);\n    initGame();\n}\n\nrefreshBtn.addEventListener(&quot;click&quot;, initGame);\ncheckBtn.addEventListener(&quot;click&quot;, checkWord);<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you\u00a0how to create a Word Scramble Game\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Word Scramble Game is given below. JavaScript Word Scramble Game Source Code index.html style.css js\/words.js js\/script.js<\/p>\n","protected":false},"author":1,"featured_media":3701,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3699","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-tutorials"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>How to Make a Word Scramble Game in HTML5, CSS3 &amp; JavaScript<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you\u00a0how to create a Word Scramble Game\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Word\" \/>\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\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to Make a Word Scramble Game in HTML5, CSS3 &amp; JavaScript\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you\u00a0how to create a Word Scramble Game\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Word\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-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-08T08:39:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-08T08:39:22+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Word-Scramble-Game-in-HTML-CSS-JavaScript-Word-Game-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=\"4 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to Make a Word Scramble Game in HTML5, CSS3 & JavaScript","description":"In this tutorial, I will teach you\u00a0how to create a Word Scramble Game\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Word","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\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/","og_locale":"en_US","og_type":"article","og_title":"How to Make a Word Scramble Game in HTML5, CSS3 & JavaScript","og_description":"In this tutorial, I will teach you\u00a0how to create a Word Scramble Game\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Word","og_url":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-08T08:39:21+00:00","article_modified_time":"2022-10-08T08:39:22+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Word-Scramble-Game-in-HTML-CSS-JavaScript-Word-Game-in-JavaScript.jpg","type":"image\/jpeg"}],"author":"Furqan","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Furqan","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"How to Make a Word Scramble Game in HTML5, CSS3 &#038; JavaScript","datePublished":"2022-10-08T08:39:21+00:00","dateModified":"2022-10-08T08:39:22+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/"},"wordCount":59,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Word-Scramble-Game-in-HTML-CSS-JavaScript-Word-Game-in-JavaScript.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/","url":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/","name":"How to Make a Word Scramble Game in HTML5, CSS3 & JavaScript","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Word-Scramble-Game-in-HTML-CSS-JavaScript-Word-Game-in-JavaScript.jpg","datePublished":"2022-10-08T08:39:21+00:00","dateModified":"2022-10-08T08:39:22+00:00","description":"In this tutorial, I will teach you\u00a0how to create a Word Scramble Game\u00a0using HTML5, CSS3, and JavaScript. The complete source code of this JavaScript Word","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Word-Scramble-Game-in-HTML-CSS-JavaScript-Word-Game-in-JavaScript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/Word-Scramble-Game-in-HTML-CSS-JavaScript-Word-Game-in-JavaScript.jpg","width":880,"height":495,"caption":"How to Make a Word Scramble Game in HTML5, CSS3 & JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/how-to-make-a-word-scramble-game-in-html5-css3-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"How to Make a Word Scramble Game in 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:\/\/www.edopedia.com\/blog\/#\/schema\/person\/image\/","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\/3699","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=3699"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3699\/revisions"}],"predecessor-version":[{"id":3700,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3699\/revisions\/3700"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3701"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3699"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3699"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3699"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}