{"id":37576,"date":"2016-07-21T13:01:16","date_gmt":"2016-07-21T07:31:16","guid":{"rendered":"http:\/\/www.tothenew.com\/blog\/?p=37576"},"modified":"2017-09-12T12:43:35","modified_gmt":"2017-09-12T07:13:35","slug":"how-to-consistently-push-footer-at-the-bottom-using-css","status":"publish","type":"post","link":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/","title":{"rendered":"How to consistently push footer at the bottom using CSS?"},"content":{"rendered":"<p>If an HTML page has very less content then the footer is normally seen\u00a0halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario\u00a0web designers are asked to push footers down to the bottom, but at times designers aren&#8217;t able to achieve this as they are unaware about certain CSS tricks.<\/p>\n<p><strong>How to push footer down through CSS?<\/strong><\/p>\n<p>Actually it&#8217;s not so complicated. This is done by using a mix of HTML and CSS.<\/p>\n<p><strong>HTML Structure:<\/strong><\/p>\n<p>[java]<br \/>\n&lt;div id=&quot;wrapper&quot;&gt;<br \/>\n\t&lt;div class=&quot;header&quot;&gt;&lt;\/div&gt;<br \/>\n\t&lt;div class=&quot;main-content&quot;&gt;&lt;\/div&gt;<br \/>\n\t&lt;div class=&quot;footer&quot;&gt;&lt;\/div&gt;<br \/>\n&lt;\/div&gt;<br \/>\n[\/java]<\/p>\n<p>You would only require\u00a0four div structures to achieve this. The first is wrapper which covers\u00a0the entire\u00a0page content. The second wrapper has\u00a0three divs such as\u00a0header, main content and footer. That&#8217;s it, the magic happens for this only by CSS.<\/p>\n<p><strong>CSS:<\/strong><\/p>\n<p>[java]<br \/>\nhtml,<br \/>\nbody {<br \/>\n   margin:0;<br \/>\n   padding:0;<br \/>\n   height:100%;<br \/>\n}<br \/>\n#wrapper {<br \/>\n   min-height:100%;<br \/>\n   position:relative;<br \/>\n}<br \/>\n.header {<br \/>\n   background:#ff0;<br \/>\n   padding:10px;<br \/>\n}<br \/>\n.body {<br \/>\n   padding:10px;<br \/>\n   padding-bottom:60px;   \/* Height of the footer *\/<br \/>\n}<br \/>\n.footer {<br \/>\n   position:absolute;<br \/>\n   bottom:0;<br \/>\n   width:100%;<br \/>\n   height:60px;   \/* Height of the footer *\/<br \/>\n   background:#6cf;<br \/>\n}<br \/>\n[\/java]<\/p>\n<p>And following is the CSS rule for IE 6 and IE 5.5:<\/p>\n<p>[java]<br \/>\n#wrapper{<br \/>\n   height:100%;<br \/>\n}<br \/>\n[\/java]<\/p>\n<p><strong>Below is the example image that what is the default behaviour and what will be the desired effect<\/strong><\/p>\n<p><img decoding=\"async\" src=\"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/footer-at-bottom.jpg\" alt=\"footer-at-bottom\" \/><\/p>\n<p>It will also work in the same way for\u00a0iPhones, iPods, iPads and other CSS compatible mobile devices.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>If an HTML page has very less content then the footer is normally seen\u00a0halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario\u00a0web designers are asked to push footers down to the bottom, but at times designers aren&#8217;t able to achieve this as [&hellip;]<\/p>\n","protected":false},"author":206,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":10,"footnotes":""},"categories":[3429,1],"tags":[3743,3742,3744,3745,3746],"class_list":["post-37576","post","type-post","status-publish","format-standard","hentry","category-front-end-development","category-technology","tag-footer-at-bottom","tag-footer-at-bottom-css","tag-footer-at-bottom-html","tag-footer-at-the-end-of-page","tag-footer-at-the-end-of-page-css"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren&#039;t able to achieve this as\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Amit Narayan\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.0.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"TO THE NEW BLOG\" \/>\n\t\t<meta property=\"og:type\" content=\"blog\" \/>\n\t\t<meta property=\"og:title\" content=\"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren&#039;t able to achieve this as\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@tothenew\" \/>\n\t\t<meta name=\"twitter:title\" content=\"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren&#039;t able to achieve this as\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#article\",\"name\":\"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog\",\"headline\":\"How to consistently push footer at the bottom using CSS?\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"\\\/blog\\\/wp-ttn-blog\\\/uploads\\\/2016\\\/07\\\/footer-at-bottom.jpg\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#articleImage\"},\"datePublished\":\"2016-07-21T13:01:16+05:30\",\"dateModified\":\"2017-09-12T12:43:35+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#webpage\"},\"articleSection\":\"Front End Development, Technology, footer at bottom, footer at bottom css, footer at bottom html, footer at the end of page, footer at the end of page css\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"position\":2,\"name\":\"Technology\",\"item\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#listItem\",\"name\":\"How to consistently push footer at the bottom using CSS?\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#listItem\",\"position\":3,\"name\":\"How to consistently push footer at the bottom using CSS?\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/category\\\/technology\\\/#listItem\",\"name\":\"Technology\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\",\"name\":\"TO THE NEW Blog\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/\",\"name\":\"Amit Narayan\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/e87cd57b-529b-4c79-b4c0-f60b56c14d46_222-Amit-Narayan-PROFILEPICTURE.jpeg\",\"width\":96,\"height\":96,\"caption\":\"Amit Narayan\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/\",\"name\":\"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog\",\"description\":\"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren't able to achieve this as\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/how-to-consistently-push-footer-at-the-bottom-using-css\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/amitn\\\/#author\"},\"datePublished\":\"2016-07-21T13:01:16+05:30\",\"dateModified\":\"2017-09-12T12:43:35+05:30\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/\",\"name\":\"TO THE NEW Blog\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog","description":"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren't able to achieve this as","canonical_url":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#article","name":"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog","headline":"How to consistently push footer at the bottom using CSS?","author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author"},"publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"},"image":{"@type":"ImageObject","url":"\/blog\/wp-ttn-blog\/uploads\/2016\/07\/footer-at-bottom.jpg","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#articleImage"},"datePublished":"2016-07-21T13:01:16+05:30","dateModified":"2017-09-12T12:43:35+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#webpage"},"isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#webpage"},"articleSection":"Front End Development, Technology, footer at bottom, footer at bottom css, footer at bottom html, footer at the end of page, footer at the end of page css"},{"@type":"BreadcrumbList","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.tothenew.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/www.tothenew.com\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#listItem","name":"How to consistently push footer at the bottom using CSS?"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#listItem","position":3,"name":"How to consistently push footer at the bottom using CSS?","previousItem":{"@type":"ListItem","@id":"https:\/\/www.tothenew.com\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/www.tothenew.com\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/www.tothenew.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author","url":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/","name":"Amit Narayan","image":{"@type":"ImageObject","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/e87cd57b-529b-4c79-b4c0-f60b56c14d46_222-Amit-Narayan-PROFILEPICTURE.jpeg","width":96,"height":96,"caption":"Amit Narayan"}},{"@type":"WebPage","@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#webpage","url":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/","name":"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog","description":"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren't able to achieve this as","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.tothenew.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/#breadcrumblist"},"author":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author"},"creator":{"@id":"https:\/\/www.tothenew.com\/blog\/author\/amitn\/#author"},"datePublished":"2016-07-21T13:01:16+05:30","dateModified":"2017-09-12T12:43:35+05:30"},{"@type":"WebSite","@id":"https:\/\/www.tothenew.com\/blog\/#website","url":"https:\/\/www.tothenew.com\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.tothenew.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog","og:description":"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren't able to achieve this as","og:url":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/","og:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"How to consistently push footer at the bottom using CSS? | TO THE NEW Blog","twitter:description":"If an HTML page has very less content then the footer is normally seen halfway up the page leaving a blank space below it. This can look bad on a large screen. In such a scenario web designers are asked to push footers down to the bottom, but at times designers aren't able to achieve this as","twitter:image":"https:\/\/www.tothenew.com\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"37576","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":"","og_description":"","og_object_type":"blog","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":"","og_custom_url":null,"og_article_section":"","og_article_tags":"","twitter_use_og":false,"twitter_card":"summary","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"Article","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2021-04-29 13:28:55","updated":"2024-02-29 08:45:22","focus_keyword":null,"additional_keywords":null,"truseo_locale":null,"ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.tothenew.com\/blog\/category\/technology\/\" title=\"Technology\">Technology<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tHow to consistently push footer at the bottom using CSS?\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.tothenew.com\/blog"},{"label":"Technology","link":"https:\/\/www.tothenew.com\/blog\/category\/technology\/"},{"label":"How to consistently push footer at the bottom using CSS?","link":"https:\/\/www.tothenew.com\/blog\/how-to-consistently-push-footer-at-the-bottom-using-css\/"}],"_links":{"self":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/37576","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/users\/206"}],"replies":[{"embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/comments?post=37576"}],"version-history":[{"count":2,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/37576\/revisions"}],"predecessor-version":[{"id":51794,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/posts\/37576\/revisions\/51794"}],"wp:attachment":[{"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/media?parent=37576"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/categories?post=37576"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.tothenew.com\/blog\/wp-json\/wp\/v2\/tags?post=37576"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}