{"id":5524,"date":"2024-01-11T16:40:00","date_gmt":"2024-01-11T16:40:00","guid":{"rendered":"https:\/\/codehim.com\/?p=5524"},"modified":"2024-01-22T14:45:13","modified_gmt":"2024-01-22T09:45:13","slug":"breaking-news-ticker-html-code","status":"publish","type":"post","link":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/","title":{"rendered":"Breaking News Ticker HTML Code with Demo"},"content":{"rendered":"<p>This lightweight CSS3 code snippet helps you to create a breaking news ticker in your HTML web project. It creates a stylish news ticker and scrolls text vertically after a certain delay time.<\/p>\n<p>You can use this news ticker to display headlines of the latest news, posts, or products on a webpage. You can easily customize the background color by adding a color class. Similarly, you can set class for full-width or half-width of news bar.<\/p>\n<p>This news ticker scrolls the text up\/down only. If you want to create horizontal scrolling check <a href=\"https:\/\/codehim.com\/others\/jquery-news-ticker-horizontal-bar-with-ajax-support\/\" target=\"_blank\" rel=\"noopener\">this news ticker plugin<\/a>.<\/p>\n<h2>How to Create Breaking News Ticker in HTML<\/h2>\n<p>1. Create a div element with a class name <code>\"news\"<\/code> and place an unordered list of news links inside it.<\/p>\n<pre class=\"prettyprint linenums lang-html\">&lt;div class=\"news red full-width\"&gt;\n\t&lt;span&gt;Breaking News&lt;\/span&gt;\n\t&lt;ul class=\"scrollLeft\"&gt;\n    &lt;li&gt;&lt;a href=\"#\"&gt;Text 1 - Short Description&lt;\/a&gt;&lt;\/li&gt;\n    &lt;li&gt;&lt;a href=\"#\"&gt;Text 2 - Short Description&lt;\/a&gt;&lt;\/li&gt;\n    &lt;li&gt;&lt;a href=\"#\"&gt;Text 3 - Short Description&lt;\/a&gt;&lt;\/li&gt;\n    &lt;li&gt;&lt;a href=\"#\"&gt;Text 4 - Short Description&lt;\/a&gt;&lt;\/li&gt;\n\t&lt;\/ul&gt;\n&lt;\/div&gt;\n<\/pre>\n<p>2. After that, style the news ticker using the following CSS.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.news {\n  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4), 0 5px 10px rgba(0,0,0,0.5);\n  width: 350px;\n  height: 30px;\n  margin: 20px auto;\n  overflow: hidden;\n  border-radius: 4px;\n  padding: 3px;\n  -webkit-user-select: none\n} \n.full-width{\n    width: 100%;\n}\n.news span {\n  float: left;\n  color: #fff;\n  padding: 6px;\n  position: relative;\n  top: 1%;\n  border-radius: 4px;\n  box-shadow: inset 0 -15px 30px rgba(0,0,0,0.4);\n  font: 16px 'Source Sans Pro', Helvetica, Arial, sans-serif;\n  -webkit-font-smoothing: antialiased;\n  -webkit-user-select: none;\n  cursor: pointer\n}\n\n.news ul {\n  float: left;\n  padding-left: 20px;\n  animation: ticker 10s cubic-bezier(1, 0, .5, 0) infinite;\n  -webkit-user-select: none\n}\n\n.news ul li {line-height: 30px; list-style: none }\n\n.news ul li a {\n  color: #fff;\n  text-decoration: none;\n  font: 14px Helvetica, Arial, sans-serif;\n  -webkit-font-smoothing: antialiased;\n  -webkit-user-select: none\n}\n<\/pre>\n<p>3. Define the CSS keyframes to animated the news ticker&#8217;s items.<\/p>\n<pre class=\"prettyprint linenums lang-css\">@keyframes ticker {\n\t0%   {margin-top: 0}\n\t25%  {margin-top: -30px}\n\t50%  {margin-top: -60px}\n\t75%  {margin-top: -90px}\n\t100% {margin-top: 0}\n}\n<\/pre>\n<p>4. Use the <a href=\"https:\/\/www.w3schools.com\/cssref\/css3_pr_animation-play-state.asp\" target=\"_blank\" rel=\"noopener\">CSS animation-play-state property<\/a> in order to pause the news ticker on hover event.<\/p>\n<pre class=\"prettyprint linenums lang-css\">.news ul:hover { animation-play-state: paused }\n.news span:hover+ul { animation-play-state: paused }\n<\/pre>\n<p>5. Finally, define color classes for the breaking news ticker and done.<\/p>\n<pre class=\"prettyprint linenums lang-css\">\/* OTHER COLORS *\/\n.blue { background: #347fd0 }\n.blue span { background: #2c66be }\n.red { background: #d23435 }\n.red span { background: #c22b2c }\n.green { background: #699B67 }\n.green span { background: #547d52 }\n.magenta { background: #b63ace }\n.magenta span { background: #842696 }\n.yellow {background : yellow}\n.yellow span {background : yellow}\n<\/pre>\n<p>That&#8217;s all! hopefully, you have successfully integrated this breaking news ticker HTML code into your project. If you have any questions or suggestions, let me know by comment below.<\/p>\n\n\n<p>Connect with us on social media:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><a href=\"https:\/\/gab.com\/codehim\">https:\/\/gab.com\/codehim<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/portfolium.com\/codehimcom\">https:\/\/portfolium.com\/codehimcom<\/a><\/li>\n\n\n\n<li><a href=\"https:\/\/audiomack.com\/codehim\">https:\/\/audiomack.com\/codehim<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>This lightweight CSS3 code snippet helps you to create a breaking news ticker in your HTML web project. It creates&#8230;<\/p>\n","protected":false},"author":1,"featured_media":5527,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"footnotes":""},"categories":[63],"tags":[103],"class_list":["post-5524","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>Breaking News Ticker HTML Code with Demo &#8212; CodeHim<\/title>\n<meta name=\"description\" content=\"Do you want to create a news ticker? here is pack of breaking news ticker created with HTML and CSS code. You can view demo &amp; download.\" \/>\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\/breaking-news-ticker-html-code\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Breaking News Ticker HTML Code with Demo &#8212; CodeHim\" \/>\n<meta property=\"og:description\" content=\"Do you want to create a news ticker? here is pack of breaking news ticker created with HTML and CSS code. You can view demo &amp; download.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-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-11T16:40:00+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-01-22T09:45:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png\" \/>\n\t<meta property=\"og:image:width\" content=\"577\" \/>\n\t<meta property=\"og:image:height\" content=\"433\" \/>\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=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/\"},\"author\":{\"name\":\"Asif Mughal\",\"@id\":\"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed\"},\"headline\":\"Breaking News Ticker HTML Code with Demo\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:45:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/\"},\"wordCount\":225,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/codehim.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png\",\"keywords\":[\"News Ticker\"],\"articleSection\":[\"HTML5 &amp; CSS3\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/\",\"url\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/\",\"name\":\"Breaking News Ticker HTML Code with Demo &#8212; CodeHim\",\"isPartOf\":{\"@id\":\"https:\/\/codehim.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png\",\"datePublished\":\"2024-01-11T16:40:00+00:00\",\"dateModified\":\"2024-01-22T09:45:13+00:00\",\"description\":\"Do you want to create a news ticker? here is pack of breaking news ticker created with HTML and CSS code. You can view demo & download.\",\"breadcrumb\":{\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage\",\"url\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png\",\"contentUrl\":\"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png\",\"width\":577,\"height\":433,\"caption\":\"Breaking News Ticker HTML Code with Demo\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-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\":\"Breaking News Ticker HTML Code with Demo\"}]},{\"@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":"Breaking News Ticker HTML Code with Demo &#8212; CodeHim","description":"Do you want to create a news ticker? here is pack of breaking news ticker created with HTML and CSS code. You can view demo & download.","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\/breaking-news-ticker-html-code\/","og_locale":"en_US","og_type":"article","og_title":"Breaking News Ticker HTML Code with Demo &#8212; CodeHim","og_description":"Do you want to create a news ticker? here is pack of breaking news ticker created with HTML and CSS code. You can view demo & download.","og_url":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/","og_site_name":"CodeHim","article_publisher":"https:\/\/www.facebook.com\/codehimofficial","article_published_time":"2024-01-11T16:40:00+00:00","article_modified_time":"2024-01-22T09:45:13+00:00","og_image":[{"width":577,"height":433,"url":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-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":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#article","isPartOf":{"@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/"},"author":{"name":"Asif Mughal","@id":"https:\/\/codehim.com\/#\/schema\/person\/cc48f1dbe072a89a62a98171b7db43ed"},"headline":"Breaking News Ticker HTML Code with Demo","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:45:13+00:00","mainEntityOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/"},"wordCount":225,"commentCount":2,"publisher":{"@id":"https:\/\/codehim.com\/#organization"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png","keywords":["News Ticker"],"articleSection":["HTML5 &amp; CSS3"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/","url":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/","name":"Breaking News Ticker HTML Code with Demo &#8212; CodeHim","isPartOf":{"@id":"https:\/\/codehim.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage"},"image":{"@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage"},"thumbnailUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png","datePublished":"2024-01-11T16:40:00+00:00","dateModified":"2024-01-22T09:45:13+00:00","description":"Do you want to create a news ticker? here is pack of breaking news ticker created with HTML and CSS code. You can view demo & download.","breadcrumb":{"@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-html-code\/#primaryimage","url":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png","contentUrl":"https:\/\/codehim.com\/wp-content\/uploads\/2021\/09\/breaking-news-ticker-html-code.png","width":577,"height":433,"caption":"Breaking News Ticker HTML Code with Demo"},{"@type":"BreadcrumbList","@id":"https:\/\/codehim.com\/html5-css3\/breaking-news-ticker-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":"Breaking News Ticker HTML Code with Demo"}]},{"@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":44946,"_links":{"self":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5524","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=5524"}],"version-history":[{"count":0,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/posts\/5524\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media\/5527"}],"wp:attachment":[{"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/media?parent=5524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/categories?post=5524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codehim.com\/wp-json\/wp\/v2\/tags?post=5524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}