{"id":3657,"date":"2022-10-08T00:38:12","date_gmt":"2022-10-07T19:38:12","guid":{"rendered":"https:\/\/www.edopedia.com\/blog\/?p=3657"},"modified":"2022-10-08T00:39:15","modified_gmt":"2022-10-07T19:39:15","slug":"file-upload-with-progress-bar-html5-css3-javascript-php","status":"publish","type":"post","link":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/","title":{"rendered":"File Upload with Progress Bar HTML5, CSS3, JavaScript &#038; PHP"},"content":{"rendered":"\n<p>In this tutorial, I will teach you\u00a0<strong>how to upload files with a progress bar<\/strong>\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this <strong>File Upload with Progress Bar<\/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;&gt;\n&lt;head&gt;\n  &lt;meta charset=&quot;UTF-8&quot;&gt;\n  &lt;meta name=&quot;viewport&quot; content=&quot;width=device-width, initial-scale=1.0&quot;&gt;\n  &lt;title&gt;File Upload with Progress Bar&lt;\/title&gt;\n  &lt;link rel=&quot;stylesheet&quot; href=&quot;style.css&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;File Uploader JavaScript&lt;\/header&gt;\n    &lt;form action=&quot;#&quot;&gt;\n      &lt;input class=&quot;file-input&quot; type=&quot;file&quot; name=&quot;file&quot; hidden&gt;\n      &lt;i class=&quot;fas fa-cloud-upload-alt&quot;&gt;&lt;\/i&gt;\n      &lt;p&gt;Browse File to Upload&lt;\/p&gt;\n    &lt;\/form&gt;\n    &lt;section class=&quot;progress-area&quot;&gt;&lt;\/section&gt;\n    &lt;section class=&quot;uploaded-area&quot;&gt;&lt;\/section&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 form = document.querySelector(&quot;form&quot;),\nfileInput = document.querySelector(&quot;.file-input&quot;),\nprogressArea = document.querySelector(&quot;.progress-area&quot;),\nuploadedArea = document.querySelector(&quot;.uploaded-area&quot;);\n\n\/\/ form click event\nform.addEventListener(&quot;click&quot;, () =&gt;{\n  fileInput.click();\n});\n\nfileInput.onchange = ({target})=&gt;{\n  let file = target.files[0]; \/\/getting file [0] this means if user has selected multiple files then get first one only\n  if(file){\n    let fileName = file.name; \/\/getting file name\n    if(fileName.length &gt;= 12){ \/\/if file name length is greater than 12 then split it and add ...\n      let splitName = fileName.split('.');\n      fileName = splitName[0].substring(0, 13) + &quot;... .&quot; + splitName[1];\n    }\n    uploadFile(fileName); \/\/calling uploadFile with passing file name as an argument\n  }\n}\n\n\/\/ file upload function\nfunction uploadFile(name){\n  let xhr = new XMLHttpRequest(); \/\/creating new xhr object (AJAX)\n  xhr.open(&quot;POST&quot;, &quot;php\/upload.php&quot;); \/\/sending post request to the specified URL\n  xhr.upload.addEventListener(&quot;progress&quot;, ({loaded, total}) =&gt;{ \/\/file uploading progress event\n    let fileLoaded = Math.floor((loaded \/ total) * 100);  \/\/getting percentage of loaded file size\n    let fileTotal = Math.floor(total \/ 1000); \/\/gettting total file size in KB from bytes\n    let fileSize;\n    \/\/ if file size is less than 1024 then add only KB else convert this KB into MB\n    (fileTotal &lt; 1024) ? fileSize = fileTotal + &quot; KB&quot; : fileSize = (loaded \/ (1024*1024)).toFixed(2) + &quot; MB&quot;;\n    let progressHTML = `&lt;li class=&quot;row&quot;&gt;\n                          &lt;i class=&quot;fas fa-file-alt&quot;&gt;&lt;\/i&gt;\n                          &lt;div class=&quot;content&quot;&gt;\n                            &lt;div class=&quot;details&quot;&gt;\n                              &lt;span class=&quot;name&quot;&gt;${name} \u2022 Uploading&lt;\/span&gt;\n                              &lt;span class=&quot;percent&quot;&gt;${fileLoaded}%&lt;\/span&gt;\n                            &lt;\/div&gt;\n                            &lt;div class=&quot;progress-bar&quot;&gt;\n                              &lt;div class=&quot;progress&quot; style=&quot;width: ${fileLoaded}%&quot;&gt;&lt;\/div&gt;\n                            &lt;\/div&gt;\n                          &lt;\/div&gt;\n                        &lt;\/li&gt;`;\n    \/\/ uploadedArea.innerHTML = &quot;&quot;; \/\/uncomment this line if you don't want to show upload history\n    uploadedArea.classList.add(&quot;onprogress&quot;);\n    progressArea.innerHTML = progressHTML;\n    if(loaded == total){\n      progressArea.innerHTML = &quot;&quot;;\n      let uploadedHTML = `&lt;li class=&quot;row&quot;&gt;\n                            &lt;div class=&quot;content upload&quot;&gt;\n                              &lt;i class=&quot;fas fa-file-alt&quot;&gt;&lt;\/i&gt;\n                              &lt;div class=&quot;details&quot;&gt;\n                                &lt;span class=&quot;name&quot;&gt;${name} \u2022 Uploaded&lt;\/span&gt;\n                                &lt;span class=&quot;size&quot;&gt;${fileSize}&lt;\/span&gt;\n                              &lt;\/div&gt;\n                            &lt;\/div&gt;\n                            &lt;i class=&quot;fas fa-check&quot;&gt;&lt;\/i&gt;\n                          &lt;\/li&gt;`;\n      uploadedArea.classList.remove(&quot;onprogress&quot;);\n      \/\/ uploadedArea.innerHTML = uploadedHTML; \/\/uncomment this line if you don't want to show upload history\n      uploadedArea.insertAdjacentHTML(&quot;afterbegin&quot;, uploadedHTML); \/\/remove this line if you don't want to show upload history\n    }\n  });\n  let data = new FormData(form); \/\/FormData is an object to easily send form data\n  xhr.send(data); \/\/sending form data\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: &quot;Poppins&quot;, sans-serif;\n}\nbody{\n  display: flex;\n  align-items: center;\n  justify-content: center;\n  min-height: 100vh;\n  background: #6990F2;\n}\n\n::selection{\n  color: #fff;\n  background: #6990F2;\n}\n.wrapper{\n  width: 430px;\n  background: #fff;\n  border-radius: 5px;\n  padding: 30px;\n  box-shadow: 7px 7px 12px rgba(0,0,0,0.05);\n}\n.wrapper header{\n  color: #6990F2;\n  font-size: 27px;\n  font-weight: 600;\n  text-align: center;\n}\n.wrapper form{\n  height: 167px;\n  display: flex;\n  cursor: pointer;\n  margin: 30px 0;\n  align-items: center;\n  justify-content: center;\n  flex-direction: column;\n  border-radius: 5px;\n  border: 2px dashed #6990F2;\n}\nform :where(i, p){\n  color: #6990F2;\n}\nform i{\n  font-size: 50px;\n}\nform p{\n  margin-top: 15px;\n  font-size: 16px;\n}\n\nsection .row{\n  margin-bottom: 10px;\n  background: #E9F0FF;\n  list-style: none;\n  padding: 15px 20px;\n  border-radius: 5px;\n  display: flex;\n  align-items: center;\n  justify-content: space-between;\n}\nsection .row i{\n  color: #6990F2;\n  font-size: 30px;\n}\nsection .details span{\n  font-size: 14px;\n}\n.progress-area .row .content{\n  width: 100%;\n  margin-left: 15px;\n}\n.progress-area .details{\n  display: flex;\n  align-items: center;\n  margin-bottom: 7px;\n  justify-content: space-between;\n}\n.progress-area .content .progress-bar{\n  height: 6px;\n  width: 100%;\n  margin-bottom: 4px;\n  background: #fff;\n  border-radius: 30px;\n}\n.content .progress-bar .progress{\n  height: 100%;\n  width: 0%;\n  background: #6990F2;\n  border-radius: inherit;\n}\n.uploaded-area{\n  max-height: 232px;\n  overflow-y: scroll;\n}\n.uploaded-area.onprogress{\n  max-height: 150px;\n}\n.uploaded-area::-webkit-scrollbar{\n  width: 0px;\n}\n.uploaded-area .row .content{\n  display: flex;\n  align-items: center;\n}\n.uploaded-area .row .details{\n  display: flex;\n  margin-left: 15px;\n  flex-direction: column;\n}\n.uploaded-area .row .details .size{\n  color: #404040;\n  font-size: 11px;\n}\n.uploaded-area i.fa-check{\n  font-size: 16px;\n}\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">php\/upload.php<\/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;php&quot;,&quot;mime&quot;:&quot;text\/x-php&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;PHP&quot;,&quot;maxHeight&quot;:&quot;400px&quot;,&quot;modeName&quot;:&quot;php&quot;}\">&lt;?php\n  $file_name =  $_FILES['file']['name']; \/\/getting file name\n  $tmp_name = $_FILES['file']['tmp_name']; \/\/getting temp_name of file\n  $file_up_name = time().$file_name; \/\/making file name dynamic by adding time before file name\n  move_uploaded_file($tmp_name, &quot;files\/&quot;.$file_up_name); \/\/moving file to the specified folder with dynamic name\n?&gt;\n<\/pre><\/div>\n\n\n\n<h3 class=\"wp-block-heading\">Create a Folder for Uploaded Files<\/h3>\n\n\n\n<p>Now you need to create a folder called <code>files<\/code> inside the <code>php<\/code> folder. Basically, this folder will hold all the uploaded files.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this tutorial, I will teach you\u00a0how to upload files with a progress bar\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this File Upload with Progress Bar project is given below. index.html script.js style.css php\/upload.php Create a Folder for Uploaded Files Now you need to create a folder called files inside the &#8230; <a title=\"File Upload with Progress Bar HTML5, CSS3, JavaScript &#038; PHP\" class=\"read-more\" href=\"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/\" aria-label=\"Read more about File Upload with Progress Bar HTML5, CSS3, JavaScript &#038; PHP\">Read more<\/a><\/p>\n","protected":false},"author":1,"featured_media":3659,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[112],"tags":[],"class_list":["post-3657","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>File Upload with Progress Bar HTML5, CSS3, JavaScript &amp; PHP<\/title>\n<meta name=\"description\" content=\"In this tutorial, I will teach you\u00a0how to upload files with a progress bar\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this File\" \/>\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\/file-upload-with-progress-bar-html5-css3-javascript-php\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"File Upload with Progress Bar HTML5, CSS3, JavaScript &amp; PHP\" \/>\n<meta property=\"og:description\" content=\"In this tutorial, I will teach you\u00a0how to upload files with a progress bar\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this File\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/\" \/>\n<meta property=\"og:site_name\" content=\"Edopedia\" \/>\n<meta property=\"article:author\" content=\"trulyfurqan\" \/>\n<meta property=\"article:published_time\" content=\"2022-10-07T19:38:12+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-07T19:39:15+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/File-Upload-with-Progress-Bar-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=\"3 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"File Upload with Progress Bar HTML5, CSS3, JavaScript & PHP","description":"In this tutorial, I will teach you\u00a0how to upload files with a progress bar\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this File","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\/file-upload-with-progress-bar-html5-css3-javascript-php\/","og_locale":"en_US","og_type":"article","og_title":"File Upload with Progress Bar HTML5, CSS3, JavaScript & PHP","og_description":"In this tutorial, I will teach you\u00a0how to upload files with a progress bar\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this File","og_url":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/","og_site_name":"Edopedia","article_author":"trulyfurqan","article_published_time":"2022-10-07T19:38:12+00:00","article_modified_time":"2022-10-07T19:39:15+00:00","og_image":[{"width":880,"height":495,"url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/File-Upload-with-Progress-Bar-HTML-CSS-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\/file-upload-with-progress-bar-html5-css3-javascript-php\/#article","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/"},"author":{"name":"Furqan","@id":"https:\/\/www.edopedia.com\/blog\/#\/schema\/person\/3951cb19e3aa56df09e408c98aa02339"},"headline":"File Upload with Progress Bar HTML5, CSS3, JavaScript &#038; PHP","datePublished":"2022-10-07T19:38:12+00:00","dateModified":"2022-10-07T19:39:15+00:00","mainEntityOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/"},"wordCount":80,"commentCount":0,"publisher":{"@id":"https:\/\/www.edopedia.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/File-Upload-with-Progress-Bar-HTML-CSS-JavaScript.jpg","articleSection":["Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/","url":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/","name":"File Upload with Progress Bar HTML5, CSS3, JavaScript & PHP","isPartOf":{"@id":"https:\/\/www.edopedia.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#primaryimage"},"image":{"@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#primaryimage"},"thumbnailUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/File-Upload-with-Progress-Bar-HTML-CSS-JavaScript.jpg","datePublished":"2022-10-07T19:38:12+00:00","dateModified":"2022-10-07T19:39:15+00:00","description":"In this tutorial, I will teach you\u00a0how to upload files with a progress bar\u00a0using HTML5, CSS3, JavaScript, and PHP. The complete source code of this File","breadcrumb":{"@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#primaryimage","url":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/File-Upload-with-Progress-Bar-HTML-CSS-JavaScript.jpg","contentUrl":"https:\/\/www.edopedia.com\/blog\/wp-content\/uploads\/2022\/10\/File-Upload-with-Progress-Bar-HTML-CSS-JavaScript.jpg","width":880,"height":495,"caption":"File Upload with Progress Bar HTML5, CSS3, JavaScript & PHP"},{"@type":"BreadcrumbList","@id":"https:\/\/www.edopedia.com\/blog\/file-upload-with-progress-bar-html5-css3-javascript-php\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.edopedia.com\/blog\/"},{"@type":"ListItem","position":2,"name":"File Upload with Progress Bar HTML5, CSS3, JavaScript &#038; PHP"}]},{"@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\/3657","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=3657"}],"version-history":[{"count":2,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3657\/revisions"}],"predecessor-version":[{"id":3660,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/posts\/3657\/revisions\/3660"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media\/3659"}],"wp:attachment":[{"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/media?parent=3657"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/categories?post=3657"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.edopedia.com\/blog\/wp-json\/wp\/v2\/tags?post=3657"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}