{"id":3005,"date":"2022-09-07T09:29:34","date_gmt":"2022-09-07T04:29:34","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3005"},"modified":"2022-09-07T09:29:42","modified_gmt":"2022-09-07T04:29:42","slug":"build-random-pokemon-generator-using-javascript-html5-css3","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/","title":{"rendered":"Build Random Pokemon Generator Using JavaScript, HTML5 &#038; CSS3"},"content":{"rendered":"\n<p>In this tutorial, I&#8217;ll teach you how to create a <strong>random pokemon generator<\/strong>. I will use JavaScript, HTML5, and CSS3 to build this <strong>random pokemon generator<\/strong>.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\">Random Pokemon Generator Source Code<\/h2>\n\n\n\n<h2 class=\"wp-block-heading\">index.html<\/h2>\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&gt;\n\t&lt;head&gt;\n\t\t&lt;title&gt;Random Pokemon Generator - Edopedia&lt;\/title&gt;\n\t\t&lt;link type=&quot;text\/css&quot; rel=&quot;stylesheet&quot; href=&quot;.\/style.css&quot; \/&gt;\n\t\t&lt;script src=&quot;.\/script.js&quot;&gt;&lt;\/script&gt;\n\t&lt;\/head&gt;\n\t\n\t&lt;body&gt;\n\t\t&lt;!-- fun with the poke-api!--&gt;\n\t\t&lt;!-- more animations to come soon :)--&gt;\n\t\t&lt;!-- find me on twitter: @flangerhanger--&gt;\n\t\t&lt;!-- open in desktop, or full screen on mobile (close the editor windows) for best effect--&gt;\n\t\t&lt;div id=&quot;page&quot;&gt;\n\t\t\t&lt;h1 class=&quot;title&quot;&gt; &lt;\/h1&gt;\n\t\t\t&lt;div id=&quot;pokeball-container&quot;&gt;\n\t\t\t\t&lt;div id=&quot;ball&quot;&gt;&lt;\/div&gt;&lt;button id=&quot;submit-number&quot; type=&quot;submit&quot;&gt;&lt;\/button&gt;\n\t\t\t\t&lt;div id=&quot;shadow&quot;&gt;&lt;\/div&gt;\n\t\t\t&lt;\/div&gt;\n\t\t\t&lt;div id=&quot;characters&quot;&gt;&lt;\/div&gt;\n\t\t&lt;\/div&gt;\n\t&lt;\/body&gt;\n&lt;\/html&gt;<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">style.css<\/h2>\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 url(&quot;https:\/\/fonts.googleapis.com\/css2?family=Fredoka+One&amp;family=Raleway:wght@600&amp;display=swap&quot;);\n:root {\n  --size: 50;\n  --unit: calc((var(--size) \/ 100) * 1vmin);\n  font-family: &quot;Raleway&quot;, sans-serif;\n}\n:root * {\n  margin: 0;\n}\n#page {\n  display: flex;\n  flex-direction: column;\n  flex-wrap: nowrap;\n  justify-content: center;\n  align-items: center;\n  height: 100vh;\n  background: #323235;\n}\n#characters {\n  display: flex;\n  flex-direction: column;\n  flex-wrap: wrap;\n  justify-content: center;\n  visibility: hidden;\n  height: calc(170 * var(--unit));\n  width: calc(120 * var(--unit));\n  background: white;\n  border-radius: 8% \/ 6%;\n  border: calc(4 * var(--unit)) solid whitesmoke;\n  box-shadow: 1em 1em 2em black;\n  transform: rotate(8deg);\n  transition: box-shadow 1s ease;\n}\n#characters:hover {\n  box-shadow: 4em 4em 2em black;\n}\n#characters h2 {\n  color: #3a3a3f;\n  letter-spacing: calc(2 * var(--unit));\n  font-size: calc(10 * var(--unit));\n  margin: 8% 0 2% 6%;\n}\n#characters h3 {\n  font-size: calc(9 * var(--unit));\n  text-align: right;\n  margin-right: 5%;\n}\n#characters p {\n  color: #3a3a3f;\n  letter-spacing: calc(1 * var(--unit));\n  font-size: calc(5 * var(--unit));\n  margin: 0% 8%;\n}\n#characters #inner {\n  color: #3a3a3f;\n  letter-spacing: calc(0.5 * var(--unit));\n  font-size: calc(4 * var(--unit));\n  margin: 0% 8%;\n}\n#characters .mediaContainer {\n  height: 60%;\n  background: linear-gradient(0deg, whitesmoke 1%, transparent);\n  clip-path: polygon(0% 7%, 100% 0%, 100% 100%, 0% 100%);\n}\nimg {\n  width: 60%;\n  height: auto;\n  object-fit: contain;\n  transform: translate(30%, 20%);\n}\n#pokeball-container {\n  animation: wobble 3s infinite both;\n  position: absolute;\n}\n#pokeball-container #shadow {\n  animation-play-state: paused;\n  width: calc(50 * var(--unit));\n  height: calc(20 * var(--unit));\n  background-color: black;\n  opacity: 0.2;\n  box-shadow: 0 0 calc(4 * var(--unit)) calc(2 * var(--unit)) black;\n  position: absolute;\n  bottom: -10%;\n  left: 10%;\n  z-index: -1;\n  border-radius: 50%;\n}\n#pokeball-container button {\n  display: block;\n  height: calc(70 * var(--unit));\n  width: calc(70 * var(--unit));\n  background: linear-gradient(100deg, #b8b8b8 0%, white);\n  -webkit-clip-path: circle(50% at 50% 50%);\n  clip-path: circle(50% at 50% 50%);\n  border: none;\n  transform: translate(0%, 50%);\n  border-radius: 50%;\n  -webkit-animation: wobble 2s infinite both;\n}\n#pokeball-container button::before {\n  position: absolute;\n  bottom: 48%;\n  left: 0%;\n  content: &quot;&quot;;\n  border-bottom: calc(4 * var(--unit)) solid #5e5c5c;\n  height: calc(50 * var(--unit));\n  width: calc(70 * var(--unit));\n  background: linear-gradient(100deg, red 30%, #f77);\n  z-index: 3;\n}\n#pokeball-container button::after {\n  position: absolute;\n  bottom: 37%;\n  left: 38%;\n  content: &quot;&quot;;\n  height: calc(10 * var(--unit));\n  border-radius: 50%;\n  width: calc(10 * var(--unit));\n  border: calc(4 * var(--unit)) solid #5e5c5c;\n  background: white;\n  z-index: 3;\n}\n#pokeball-container button:active, #pokeball-container button:focus {\n  border: none;\n  outline: none;\n}\n#input {\n  width: 100%;\n  display: flex;\n  flex-wrap: wrap;\n  justify-content: center;\n}\n.title {\n  text-align: center;\n  font-family: Arial, Helvetica, sans-serif;\n  font-size: calc(10 * var(--unit));\n}\n@-webkit-keyframes wobble {\n  0%, 100% {\n    -webkit-transform: translateX(0%);\n    transform: translateX(0%);\n    -webkit-transform-origin: 50% 50%;\n    transform-origin: 50% 50%;\n  }\n  15% {\n    -webkit-transform: translateX(-30px) rotate(-6deg);\n    transform: translateX(-30px) rotate(-6deg);\n  }\n  30% {\n    -webkit-transform: translateX(15px) rotate(6deg);\n    transform: translateX(15px) rotate(6deg);\n  }\n  45% {\n    -webkit-transform: translateX(-15px) rotate(-3.6deg);\n    transform: translateX(-15px) rotate(-3.6deg);\n  }\n  60% {\n    -webkit-transform: translateX(9px) rotate(2.4deg);\n    transform: translateX(9px) rotate(2.4deg);\n  }\n  75% {\n    -webkit-transform: translateX(-6px) rotate(-1.2deg);\n    transform: translateX(-6px) rotate(-1.2deg);\n  }\n}\n@keyframes wobble {\n  0%, 100% {\n    -webkit-transform: translateX(0%);\n    transform: translateX(0%);\n    -webkit-transform-origin: 50% 50%;\n    transform-origin: 50% 50%;\n  }\n  15% {\n    -webkit-transform: translateX(-30px) rotate(-6deg);\n    transform: translateX(-30px) rotate(-6deg);\n  }\n  30% {\n    -webkit-transform: translateX(15px) rotate(6deg);\n    transform: translateX(15px) rotate(6deg);\n  }\n  45% {\n    -webkit-transform: translateX(-15px) rotate(-3.6deg);\n    transform: translateX(-15px) rotate(-3.6deg);\n  }\n  60% {\n    -webkit-transform: translateX(9px) rotate(2.4deg);\n    transform: translateX(9px) rotate(2.4deg);\n  }\n  75% {\n    -webkit-transform: translateX(-6px) rotate(-1.2deg);\n    transform: translateX(-6px) rotate(-1.2deg);\n  }\n}<\/pre><\/div>\n\n\n\n<h2 class=\"wp-block-heading\">script.js<\/h2>\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 pokemonTypeColours = {\n\tground: &quot;#e7d39f&quot;,\n\telectric: &quot;#fdd998&quot;,\n\tbug: &quot;#cee397&quot;,\n\tdark: &quot;#222831&quot;,\n\tdragon: &quot;#8ac6d1&quot;,\n\tfairy: &quot;#ffb6b9&quot;,\n\tfighting: &quot;#ffc38b&quot;,\n\tfire: &quot;#ff6363&quot;,\n\tflying: &quot;#a4c5c6&quot;,\n\tghost: &quot;#827397&quot;,\n\tgrass: &quot;#b7efcd&quot;,\n\tice: &quot;#dae1e7&quot;,\n\tnormal: &quot;#eae7d9&quot;,\n\tpoison: &quot;#8566aa&quot;,\n\tpsychic: &quot;#efa8e4&quot;,\n\trock: &quot;#d2c6b2&quot;,\n\tsteel: &quot;#5f6769&quot;,\n\twater: &quot;#9aceff&quot;\n};\nvar cardDiv = document.getElementById(&quot;characters&quot;);\nvar pokeBall = document.getElementById(&quot;pokeball-container&quot;);\n\nfunction randomIdNumber() {\n\treturn Math.floor(Math.random() * Math.floor(307));\n}\n\nfunction getCharacter(event) {\n\tevent.preventDefault();\n\tlet numberInput = document.getElementById(&quot;number-input&quot;);\n\n\tvar pokemonId = randomIdNumber();\n\tif (pokemonId) {\n\t\tgetCharacters(pokemonId);\n\t}\n}\n\ndocument\n\t.getElementById(&quot;submit-number&quot;)\n\t.addEventListener(&quot;click&quot;, getCharacter);\n\nfunction getCharacters(pokemonId) {\n\tfetch(`https:\/\/pokeapi.co\/api\/v2\/pokemon\/${pokemonId}\/`)\n\t\t.then((response) =&gt; response.json())\n\t\t.then((data) =&gt; showCard(data))\n\t\t.catch((error) =&gt; console.log(error));\n}\n\nfunction getMoveData(url) {\n\tfetch(url)\n\t\t.then((response) =&gt; response.json())\n\t\t.then((data) =&gt; showMoveData(data))\n\t\t.catch((error) =&gt; console.log(error));\n}\n\nfunction showCard(data) {\n\tpokeBall.style.display = &quot;none&quot;;\n\tcardDiv.innerHTML = null;\n\n\tvar pokemonName = document.createElement(&quot;h2&quot;);\n\tpokemonName.textContent = `${data.name.toUpperCase()}`;\n\n\tlet mediaContainer = document.createElement(&quot;div&quot;);\n\tmediaContainer.setAttribute(&quot;class&quot;, &quot;mediaContainer&quot;);\n\n\tlet pokemonImage = document.createElement(&quot;img&quot;);\n\tpokemonImage.setAttribute(\n\t\t&quot;src&quot;,\n\t\t`https:\/\/pokeres.bastionbot.org\/images\/pokemon\/${data.id}.png`\n\t);\n\tpokemonImage.setAttribute(&quot;alt&quot;, data.name);\n\n\tcardDiv.appendChild(pokemonName);\n\tmediaContainer.appendChild(pokemonImage);\n\tcardDiv.appendChild(mediaContainer);\n\n\tlet pokemonType = data.types[0].type.name;\n\tlet pokemonTypeTitle = document.createElement(&quot;h3&quot;);\n\tpokemonTypeTitle.textContent = pokemonType;\n\tcardDiv.appendChild(pokemonTypeTitle);\n\tgetMoveData(data.moves[0].move.url);\n\n\tsetBackgroundColour(mediaContainer, pokemonType);\n\tsetTextColour([pokemonTypeTitle], pokemonType);\n\tcardDiv.style.visibility = &quot;visible&quot;;\n}\n\nfunction showMoveData(data) {\n\tvar pokemonMoves = data.name;\n\tvar cardBodyText = document.createElement(&quot;div&quot;);\n\tvar moveData = data.flavor_text_entries[2].flavor_text;\n\tcardBodyText.innerHTML = `&lt;p&gt;${pokemonMoves.toUpperCase()}&lt;\/p&gt;&lt;br&gt;&lt;p id=&quot;inner&quot;&gt;${moveData}&lt;\/p&gt;`;\n\tcardDiv.appendChild(cardBodyText);\n}\n\nfunction reset() {\n\tcardDiv.style.visibility = &quot;hidden&quot;;\n\tpokeBall.style.display = &quot;block&quot;;\n}\n\ncardDiv.addEventListener(&quot;click&quot;, reset);\n\nfunction setBackgroundColour(element, data) {\n\telement.style.background = `linear-gradient(0deg, white 10%, ${pokemonTypeColours[data]})`;\n}\n\nfunction setTextColour(element, data) {\n\telement.forEach((item) =&gt; {\n\t\titem.style.color = pokemonTypeColours[data];\n\t});\n}<\/pre><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I&#8217;ll teach you how to create a random pokemon generator. I will use JavaScript, HTML5, and CSS3 to build this random pokemon generator. Random Pokemon Generator Source Code index.html style.css script.js<\/p>\n","protected":false},"author":1,"featured_media":3007,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3005","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>Build Random Pokemon Generator Using JavaScript, HTML5 &amp; CSS3<\/title>\n<meta name=\"description\" content=\"In this tutorial, I&#039;ll teach you how to create a random pokemon generator. I will use JavaScript, HTML5, and CSS3 to build this random pokemon generator.\" \/>\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-random-pokemon-generator-using-javascript-html5-css3\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Build Random Pokemon Generator Using JavaScript, HTML5 &amp; CSS3\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I&#039;ll teach you how to create a random pokemon generator. I will use JavaScript, HTML5, and CSS3 to build this random pokemon generator.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-07T04:29:34+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-07T04:29:42+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/random_pokemon_generator.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":"Build Random Pokemon Generator Using JavaScript, HTML5 & CSS3","description":"In this tutorial, I'll teach you how to create a random pokemon generator. I will use JavaScript, HTML5, and CSS3 to build this random pokemon generator.","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-random-pokemon-generator-using-javascript-html5-css3\/","og_locale":"en_US","og_type":"article","og_title":"Build Random Pokemon Generator Using JavaScript, HTML5 & CSS3","og_description":"In this tutorial, I'll teach you how to create a random pokemon generator. I will use JavaScript, HTML5, and CSS3 to build this random pokemon generator.","og_url":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-09-07T04:29:34+00:00","article_modified_time":"2022-09-07T04:29:42+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/random_pokemon_generator.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\/build-random-pokemon-generator-using-javascript-html5-css3\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"Build Random Pokemon Generator Using JavaScript, HTML5 &#038; CSS3","datePublished":"2022-09-07T04:29:34+00:00","dateModified":"2022-09-07T04:29:42+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/"},"wordCount":45,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/random_pokemon_generator.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/","url":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/","name":"Build Random Pokemon Generator Using JavaScript, HTML5 & CSS3","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/random_pokemon_generator.jpg","datePublished":"2022-09-07T04:29:34+00:00","dateModified":"2022-09-07T04:29:42+00:00","description":"In this tutorial, I'll teach you how to create a random pokemon generator. I will use JavaScript, HTML5, and CSS3 to build this random pokemon generator.","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/random_pokemon_generator.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/09\/random_pokemon_generator.jpg","width":880,"height":495,"caption":"Random Pokemon Generator"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/build-random-pokemon-generator-using-javascript-html5-css3\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Build Random Pokemon Generator Using JavaScript, HTML5 &#038; CSS3"}]},{"@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\/3005","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=3005"}],"version-history":[{"count":1,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3005\/revisions"}],"predecessor-version":[{"id":3006,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3005\/revisions\/3006"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3007"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3005"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3005"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3005"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}