{"id":9724,"date":"2024-01-10T18:07:00","date_gmt":"2024-01-10T18:07:00","guid":{"rendered":"https:\/\/codehim.com\/?p=9724"},"modified":"2024-01-22T16:09:27","modified_gmt":"2024-01-22T11:09:27","slug":"horizontal-news-scroller-html-code","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/","title":{"rendered":"Horizontal News Scroller HTML Code"},"content":{"rendered":"<p>This code creates a horizontal news scroller using HTML, CSS, and animations. The news scroller displays a list of news items that scroll from right to left. The user can hover over the news scroller to pause the animation.<\/p>\n<p>You can use this <a href=\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/\" target=\"_blank\" rel=\"noopener\">news ticker<\/a> to display a horizontal news scroller on a website. This can be useful for displaying news headlines, sports scores, or other types of information that need to be updated frequently.<\/p>\n<h2>How to Create Horizontal News Scroller in HTML &amp; CSS<\/h2>\n<p>1. Begin by adding the <a href=\"https:\/\/necolas.github.io\/normalize.css\/\" target=\"_blank\" rel=\"noopener\">Normalize.css<\/a> library to ensure consistent styling across different browsers. Insert the following link in your HTML file&#8217;s <code>&lt;head&gt;<\/code> section:<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;link rel=\"stylesheet\" href=\"https:\/\/cdnjs.cloudflare.com\/ajax\/libs\/normalize\/5.0.0\/normalize.min.css\"&gt;\r\n<\/pre>\n<p>2. Copy the following HTML code into the body of your HTML file. This markup includes the necessary structure for the news ticker. Feel free to customize the content within the <code>.ticker__item<\/code> divs to match your news items.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"ticker-wrap\"&gt;\r\n  &lt;div class=\"ticker-heading\"&gt;Breaking News&lt;\/div&gt;\r\n&lt;div class=\"ticker\"&gt;\r\n  &lt;div class=\"ticker__item\"&gt;Letterpress chambray brunch.&lt;\/div&gt;\r\n  &lt;div class=\"ticker__item\"&gt;Vice mlkshk crucifix beard chillwave meditation hoodie asymmetrical Helvetica.&lt;\/div&gt;\r\n  &lt;div class=\"ticker__item\"&gt;Ugh PBR&amp;B kale chips Echo Park.&lt;\/div&gt;\r\n  &lt;div class=\"ticker__item\"&gt;Gluten-free mumblecore chambray mixtape food truck. &lt;\/div&gt;\r\n&lt;\/div&gt;\r\n&lt;\/div&gt;<\/pre>\n<p>3. Integrate the following CSS code into your project&#8217;s stylesheet or within a <code>&lt;style&gt;<\/code> tag in the HTML file. This CSS defines the appearance and animation of the news ticker.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@-webkit-keyframes ticker {\r\n  0% {\r\n    -webkit-transform: translate3d(0, 0, 0);\r\n    transform: translate3d(0, 0, 0);\r\n    visibility: visible;\r\n  }\r\n  100% {\r\n    -webkit-transform: translate3d(-100%, 0, 0);\r\n    transform: translate3d(-100%, 0, 0);\r\n  }\r\n}\r\n@keyframes ticker {\r\n  0% {\r\n    -webkit-transform: translate3d(0, 0, 0);\r\n    transform: translate3d(0, 0, 0);\r\n    visibility: visible;\r\n  }\r\n  100% {\r\n    -webkit-transform: translate3d(-100%, 0, 0);\r\n    transform: translate3d(-100%, 0, 0);\r\n  }\r\n}\r\n.ticker-heading {\r\n  position: absolute;\r\n  background: #A6C22F;\r\n  display: block;\r\n  left: 0;\r\n  top: 0;\r\n  height: 2.5rem;\r\n  padding: 11px 40px;\r\n  z-index: 2;\r\n  color: white;\r\n  text-transform: uppercase;\r\n  font-size: 0.875rem;\r\n}\r\n\r\n.ticker-wrap .ticker__item:before {\r\n  content: \"\";\r\n  height: 11px;\r\n  width: 11px;\r\n  display: inline-block;\r\n  background-color: #1074bc;\r\n  border-radius: 100%;\r\n  position: relative;\r\n  margin-right: 15px;\r\n}\r\n\r\n.ticker-heading:after {\r\n  content: \"\";\r\n  width: 0;\r\n  height: 0;\r\n  border-top: 8px solid transparent;\r\n  border-bottom: 8px solid transparent;\r\n  border-left: 11px solid #A6C22F;\r\n  position: absolute;\r\n  margin-left: 40px;\r\n}\r\n\r\n.ticker-wrap {\r\n  position: relative;\r\n  bottom: 0;\r\n  width: 100%;\r\n  overflow: hidden;\r\n  height: 2.5rem;\r\n  background-color: #f9f9f9;\r\n  padding-left: 100%;\r\n  box-sizing: content-box;\r\n}\r\n.ticker-wrap .ticker:hover {\r\n  -webkit-animation-play-state: paused;\r\n  -moz-animation-play-state: paused;\r\n  -ms-animation-play-state: paused;\r\n  -o-animation-play-state: paused;\r\n  animation-play-state: paused;\r\n}\r\n.ticker-wrap .ticker {\r\n  display: inline-block;\r\n  height: 2.5rem;\r\n  line-height: 2.5rem;\r\n  white-space: nowrap;\r\n  padding-right: 100%;\r\n  box-sizing: content-box;\r\n  -webkit-animation-iteration-count: infinite;\r\n  animation-iteration-count: infinite;\r\n  -webkit-animation-timing-function: linear;\r\n  animation-timing-function: linear;\r\n  -webkit-animation-name: ticker;\r\n  animation-name: ticker;\r\n  -webkit-animation-duration: 30s;\r\n  animation-duration: 30s;\r\n}\r\n.ticker-wrap .ticker__item {\r\n  display: inline-block;\r\n  padding: 0 2rem;\r\n  font-size: 0.875rem;\r\n  color: #454545;\r\n}<\/pre>\n<p>Customize the styling to match your website&#8217;s theme. You can modify colors, fonts, and other properties in the CSS code. Pay attention to the <code>.ticker-heading<\/code> and <code>.ticker__item<\/code> classes for specific customization.<\/p>\n<p>That&#8217;s all! hopefully, you have successfully integrated this Horizontal News Scroller HTML code into your website. If you have any questions or suggestions, feel free to comment below.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This code creates a horizontal news scroller using HTML, CSS, and animations. The news scroller displays a list of news&#8230;<\/p>\n","protected":false},"author":1,"featured_media":9731,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[103],"class_list":["post-9724","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-html5-css3","tag-news-ticker"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Horizontal News Scroller HTML Code &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Here is a free code snippet to create a Horizontal News Scroller HTML Code. 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\/html5-css3\/horizontal-news-scroller-html-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Horizontal News Scroller HTML Code &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Here is a free code snippet to create a Horizontal News Scroller HTML Code. You can view demo and download the source code.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/\" \/>\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-10T18:07:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T11:09:27+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.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\/html5-css3\/horizontal-news-scroller-html-code\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Horizontal News Scroller HTML Code\",\"datePublished\":\"2024-01-10T18:07:00+00:00\",\"dateModified\":\"2024-01-22T11:09:27+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/\"},\"wordCount\":238,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png\",\"keywords\":[\"News Ticker\"],\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/\",\"name\":\"Horizontal News Scroller HTML Code &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png\",\"datePublished\":\"2024-01-10T18:07:00+00:00\",\"dateModified\":\"2024-01-22T11:09:27+00:00\",\"description\":\"Here is a free code snippet to create a Horizontal News Scroller HTML Code. You can view demo and download the source code.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png\",\"width\":1280,\"height\":960,\"caption\":\"Horizontal News Scroller HTML Code\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codehim.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"HTML5 &amp; CSS3\",\"item\":\"https:\/\/codehim.com\/category\/html5-css3\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Horizontal News Scroller HTML Code\"}]},{\"@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":"Horizontal News Scroller HTML Code &#8212; CodeHim","description":"Here is a free code snippet to create a Horizontal News Scroller HTML Code. 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\/html5-css3\/horizontal-news-scroller-html-code\/","og_locale":"en_US","og_type":"article","og_title":"Horizontal News Scroller HTML Code &#8212; CodeHim","og_description":"Here is a free code snippet to create a Horizontal News Scroller HTML Code. You can view demo and download the source code.","og_url":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-10T18:07:00+00:00","article_modified_time":"2024-01-22T11:09:27+00:00","og_image":[{"width":1280,"height":960,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.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\/html5-css3\/horizontal-news-scroller-html-code\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Horizontal News Scroller HTML Code","datePublished":"2024-01-10T18:07:00+00:00","dateModified":"2024-01-22T11:09:27+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/"},"wordCount":238,"commentCount":0,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png","keywords":["News Ticker"],"articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/","url":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/","name":"Horizontal News Scroller HTML Code &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png","datePublished":"2024-01-10T18:07:00+00:00","dateModified":"2024-01-22T11:09:27+00:00","description":"Here is a free code snippet to create a Horizontal News Scroller HTML Code. You can view demo and download the source code.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2023\/11\/Horizontal-News-Scroller-HTML-Code.png","width":1280,"height":960,"caption":"Horizontal News Scroller HTML Code"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/horizontal-news-scroller-html-code\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codehim.com\/"},{"@type":"ListItem","position":2,"name":"HTML5 &amp; CSS3","item":"https:\/\/codehim.com\/category\/html5-css3\/"},{"@type":"ListItem","position":3,"name":"Horizontal News Scroller HTML Code"}]},{"@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":3913,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9724","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=9724"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/9724\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/9731"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=9724"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=9724"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=9724"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}