{"id":8871,"date":"2024-01-10T17:56:00","date_gmt":"2024-01-10T17:56:00","guid":{"rendered":"https:\/\/codehim.com\/?p=8871"},"modified":"2024-01-22T15:56:32","modified_gmt":"2024-01-22T10:56:32","slug":"internet-speed-test-using-javascript","status":"publish","type":"post","link":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/","title":{"rendered":"Internet Speed Test Using JavaScript"},"content":{"rendered":"<p>This code enables you to perform an internet speed test using JavaScript. When you click the &#8220;Start&#8221; button, it downloads an image from a specified URL and calculates your connection speed in real-time. It then displays your speed in either Bps, KBps, or MBps, providing you with a quick assessment of your internet connection&#8217;s performance. This code is helpful for evaluating your internet speed on various devices and browsers.<\/p>\n<p>Additionally, it can be a valuable tool for website administrators to monitor and optimize their site&#8217;s performance. You can use this code on your website to offer visitors a quick and easy way to check their internet speed. It helps users gauge their connection speed, assisting them in troubleshooting slow internet issues.<\/p>\n<h2>How to Create Internet Speed Test Tool using JavaScript<\/h2>\n<p>1. First, load the Google Fonts (optional), <a href=\"https:\/\/github.com\/LeaVerou\/prefixfree\" target=\"_blank\" rel=\"noopener\">Prefixfree JS<\/a>, and <a href=\"https:\/\/jquery.com\" target=\"_blank\" rel=\"noopener\">jQuery<\/a> by adding the following CDN links into the head tag of your web\/app project.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel='stylesheet' href='https:\/\/fonts.googleapis.com\/css?family=Offside|Alef'&gt;\r\n&lt;script src=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/prefixfree\/1.0.7\/prefixfree.min.js\"&gt;&lt;\/script&gt;\r\n&lt;script src='\/\/cdnjs.cloudflare.com\/ajax\/libs\/jquery\/2.1.3\/jquery.min.js'&gt;&lt;\/script&gt;<\/pre>\n<p>2. After that, create the HTML structure for your internet speed test tool. You can customize the design and layout to match your website&#8217;s style. Make sure to include the necessary HTML elements, such as buttons and result containers.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"main\"&gt;\r\n  &lt;div class=\"header\"&gt;\r\n    &lt;h2&gt;Speed Test with JavaScript&lt;\/h2&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div class=\"content\"&gt;\r\n    &lt;button id=\"starttest\"&gt;Start&lt;\/button&gt;\r\n  &lt;\/div&gt;\r\n  &lt;div id=\"results\"&gt;\r\n  &lt;\/div&gt;  \r\n  &lt;div id=\"disclaimer\"&gt;\r\n    &lt;p&gt;We regret due the early publish of this alpha version, we're still not comatible with all browsers. Tested with Chrome (27) and Firefox (21). This is not a final version.&lt;\/p&gt;\r\n  &lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>3. Add the following CSS code to your project to style the basic interface of your speed test tool. You can modify the styles to fit your website&#8217;s design. The CSS code can be customized according to your needs.<\/p>\n<pre class=\"prettyprint linenums lang-css\">body{\r\n  font-size: 12px;\r\n  font-family: 'Offside'; \r\n  background-color: #E6F6D8;\r\n}\r\nh2{\r\n  font-size: 4.5em;\r\n  color: #555;\r\n}\r\nh2, h3{\r\n  text-align: center;\r\n}\r\n\r\n.main{\r\n  margin: 20px;\r\n}\r\n.content{\r\n  text-align: center;\r\n  height: 120px;\r\n}\r\nbutton{\r\n  background-color: #71D971;\r\n  border: 0px;\r\n  border-radius: 15px;\r\n  width: 400px;\r\n  height: 100px;\r\n  color: white;\r\n  font-size: 2em;\r\n  margin: 20px auto;\r\n  font-family: 'Offside'\r\n}\r\nbutton:hover{\r\n  background-color: #40B440;\r\n  -webkit-box-shadow:  5px 5px 10px 1px rgba(0, 0, 0, .5);\r\n  box-shadow:  5px 5px 10px 1px rgba(0, 0, 0, .5);\r\n}\r\n#disclaimer{\r\n  margin-top: 30px;\r\n  font-size: .8em;\r\n  color: gray;\r\n  text-align: center;\r\n}<\/pre>\n<p>4. Copy and paste the following JavaScript code into your project. It measures the time it takes to download an image and displays the speed in either Bps, KBps, or MBps.<\/p>\n<pre class=\"prettyprint linenums lang-js\">\/*\r\n  Para poder poner este script en tu server tienes que poner tambien un archivo en tu server y saber de que tama\u00f1o es para poner la informacion en imageAddr y downloadSize.\r\n*\/\r\n\r\nvar imageAddr = \"http:\/\/wallpaperswide.com\/download\/shadow_of_the_tomb_raider_2018_puzzle_video_game-wallpaper-7680x4800.jpg\" + \"?n=\" + Math.random();\r\nvar startTime, endTime;\r\nvar downloadSize = 5616998; \/\/5.36Mb\r\nvar download = new Image();\r\nvar roundedDecimals = 2;\r\nvar bytesInAKilobyte = 1024;\r\n\r\nfunction showResults() {\r\n  var duration = (endTime - startTime) \/ 1000;\r\n  var bitsLoaded = downloadSize * 8;\r\n  var speedBps = ( bitsLoaded \/ duration ).toFixed(roundedDecimals);\r\n  var displaySpeed = speed(speedBps);\r\n  var results = \"&lt;h3&gt;Your connection speed is&lt;h3&gt;&lt;h2&gt;\" + displaySpeed.value + \" \" + displaySpeed.units + \"&lt;\/h2&gt;\"\r\n    \r\n    $('#results').fadeOut('fast',function(){\r\n      $('#results').html(results);\r\n      $('#results').fadeIn('fast', function(){\r\n        $('#starttest').text('Thank You!');\r\n      });\r\n    });\r\n}\r\n\r\nfunction speed( bitsPerSecond ){\r\n  var KBps = (bitsPerSecond \/ bytesInAKilobyte).toFixed(roundedDecimals);\r\n  if ( KBps &lt;= 1 ) return { value: bitsPerSecond, units: \"Bps\" };\r\n  var MBps = (KBps \/ bytesInAKilobyte).toFixed(roundedDecimals);\r\n  if ( MBps &lt;= 1 ) return { value: KBps, units: \"KBps\" };\r\n  else return { value: MBps, units: \"MBps\" };\r\n}\r\n\r\n$('#starttest').on('click', function(){\r\n  $('#starttest').text('Wait, downloading...');\r\n  $('#starttest').attr('disabled', 'disabled');\r\n  \r\n  download.onload = function () {\r\n    endTime = (new Date()).getTime();\r\n    showResults();\r\n  }\r\n  startTime = (new Date()).getTime();\r\n  download.src = imageAddr;\r\n})<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully created an Internet Speed Test tool using JavaScript. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code enables you to perform an internet speed test using JavaScript. When you click the &#8220;Start&#8221; button, it downloads&#8230;<\/p>\n","protected":false},"author":1,"featured_media":8875,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[56],"tags":[],"class_list":["post-8871","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-others"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Internet Speed Test Using JavaScript &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Internet Speed Test Using JavaScript. You can view demo and download the source code.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Internet Speed Test Using JavaScript &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Internet Speed Test Using JavaScript. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeHim\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codehimofficial\" \/>\n<meta property=\"article:published_time\" content=\"2024-01-10T17:56:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T10:56:32+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1280\" \/>\n\t<meta property=\"og:image:height\" content=\"960\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Asif Mughal\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:site\" content=\"@CodeHimOfficial\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Asif Mughal\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Internet Speed Test Using JavaScript\",\"datePublished\":\"2024-01-10T17:56:00+00:00\",\"dateModified\":\"2024-01-22T10:56:32+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\"},\"wordCount\":297,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png\",\"articleSection\":[\"Others\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\",\"url\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\",\"name\":\"Internet Speed Test Using JavaScript &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png\",\"datePublished\":\"2024-01-10T17:56:00+00:00\",\"dateModified\":\"2024-01-22T10:56:32+00:00\",\"description\":\"Here is a free code snippet to create a Internet Speed Test Using JavaScript. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png\",\"width\":1280,\"height\":960,\"caption\":\"Internet Speed Test Using JavaScript\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Others\",\"item\":\"https:\/\/codehim.com\/category\/others\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Internet Speed Test Using JavaScript\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codehim.com\/#website\",\"url\":\"https:\/\/codehim.com\/\",\"name\":\"CodeHim\",\"description\":\"Web Design Code Snippets\",\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"alternateName\":\"Web Design Codes\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codehim.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/codehim.com\/#organization\",\"name\":\"CodeHim - Web Design Code & Scripts\",\"url\":\"https:\/\/codehim.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\",\"url\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"contentUrl\":\"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg\",\"width\":280,\"height\":280,\"caption\":\"CodeHim - Web Design Code & Scripts\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/codehimofficial\",\"https:\/\/x.com\/CodeHimOfficial\",\"https:\/\/www.instagram.com\/codehim\/\",\"https:\/\/www.linkedin.com\/company\/codehim\",\"https:\/\/co.pinterest.com\/codehim\/\",\"https:\/\/www.youtube.com\/@codehim\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\",\"name\":\"Asif Mughal\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g\",\"caption\":\"Asif Mughal\"},\"description\":\"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.\",\"sameAs\":[\"https:\/\/codehim.com\"],\"url\":\"https:\/\/codehim.com\/author\/asif-mughal\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Internet Speed Test Using JavaScript &#8212; CodeHim","description":"Here is a free code snippet to create a Internet Speed Test Using JavaScript. You can view demo and download the source code.","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:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/","og_locale":"en_US","og_type":"article","og_title":"Internet Speed Test Using JavaScript &#8212; CodeHim","og_description":"Here is a free code snippet to create a Internet Speed Test Using JavaScript. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T17:56:00+00:00","article_modified_time":"2024-01-22T10:56:32+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png","type":"image\/png"}],"author":"Asif Mughal","twitter_card":"summary_large_image","twitter_creator":"@CodeHimOfficial","twitter_site":"@CodeHimOfficial","twitter_misc":{"Written by":"Asif Mughal","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Internet Speed Test Using JavaScript","datePublished":"2024-01-10T17:56:00+00:00","dateModified":"2024-01-22T10:56:32+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/"},"wordCount":297,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png","articleSection":["Others"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/","url":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/","name":"Internet Speed Test Using JavaScript &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png","datePublished":"2024-01-10T17:56:00+00:00","dateModified":"2024-01-22T10:56:32+00:00","description":"Here is a free code snippet to create a Internet Speed Test Using JavaScript. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/10\/Internet-Speed-Test-Using-JavaScript.png","width":1280,"height":960,"caption":"Internet Speed Test Using JavaScript"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/others\/internet-speed-test-using-javascript\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"Others","item":"https:\/\/codehim.com\/category\/others\/"},{"@type":"ListItem","position":3,"name":"Internet Speed Test Using JavaScript"}]},{"@type":"WebSite","@id":"https:\/\/codehim.com\/#website","url":"https:\/\/codehim.com\/","name":"CodeHim","description":"Web Design Code Snippets","publisher":{"@id":"https:\/\/codehim.com\/#organization"},"alternateName":"Web Design Codes","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codehim.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/codehim.com\/#organization","name":"CodeHim - Web Design Code & Scripts","url":"https:\/\/codehim.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/","url":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","contentUrl":"http:\/\/codehim.com\/wp-content\/uploads\/2023\/06\/Codehim-short-logo.jpg","width":280,"height":280,"caption":"CodeHim - Web Design Code & Scripts"},"image":{"@id":"https:\/\/codehim.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codehimofficial","https:\/\/x.com\/CodeHimOfficial","https:\/\/www.instagram.com\/codehim\/","https:\/\/www.linkedin.com\/company\/codehim","https:\/\/co.pinterest.com\/codehim\/","https:\/\/www.youtube.com\/@codehim"]},{"@type":"Person","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed","name":"Asif Mughal","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/b25bfcd7d4e341c2c6f785a88d8ad2a4?s=96&d=mm&r=g","caption":"Asif Mughal"},"description":"I code and create web elements for amazing people around the world. I like work with new people. New people new Experiences. I truly enjoy what I'm doing, which makes me more passionate about web development and coding. I am always ready to do challenging tasks whether it is about creating a custom CMS from scratch or customizing an existing system.","sameAs":["https:\/\/codehim.com"],"url":"https:\/\/codehim.com\/author\/asif-mughal\/"}]}},"views":2370,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8871","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/comments?post=8871"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/8871\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/8875"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=8871"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=8871"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=8871"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}