{"id":38518,"date":"2016-07-29T12:49:55","date_gmt":"2016-07-29T07:19:55","guid":{"rendered":"https:\/\/tothenewco.pro\/blog\/?p=38518"},"modified":"2016-07-29T12:49:55","modified_gmt":"2016-07-29T07:19:55","slug":"amp-accelerated-mobile-pages-by-google","status":"publish","type":"post","link":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/","title":{"rendered":"AMP- ACCELERATED MOBILE PAGES by Google"},"content":{"rendered":"<p>Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers:<\/p>\n<ol>\n<li>AMP HTML: HTML extended with custom AMP properties but with some restrictions for fast and reliable performance<\/li>\n<li>AMP JS Library: ensures the fast rendering of AMP HTML pages<\/li>\n<li>Google AMP Cache: used to serve cached Amp HTML pages<\/li>\n<\/ol>\n<p>So AMP Project = AMP-HTML + AMP JS Library + Custom Styling + AMP Cache<\/p>\n<p>Goals of AMP Project<\/p>\n<ul>\n<li>Make pages fast<\/li>\n<li>Easy to implement<\/li>\n<li>Enable monetization<\/li>\n<li>Embrace open web<\/li>\n<\/ul>\n<p><strong>Create first AMP Page:<\/strong><\/p>\n<p>Basic structure for AMP Page is below:<\/p>\n<p>[java]<br \/>\n&lt;!doctype html&gt;<br \/>\n&lt;html amp lang=&quot;en&quot;&gt;<br \/>\n&lt;head&gt;<\/p>\n<p>&lt;\/head&gt;<br \/>\n&lt;body&gt;<\/p>\n<p>&lt;\/body&gt;<br \/>\n&lt;\/html&gt;<br \/>\n[\/java]<\/p>\n<p>Code inside head tag:<\/p>\n<p>[java]<br \/>\n&lt;head&gt;<br \/>\n&lt;meta charset=&quot;utf-8&quot;&gt;<br \/>\n&lt;title&gt;First AMP Page&lt;\/title&gt;<br \/>\n&lt;link rel=&quot;canonical&quot; href=&quot;http:\/\/ampproject.org\/article.html&quot; \/&gt;<br \/>\n&lt;meta name=&quot;viewport&quot; content=&quot;width=device-width,minimum-scale=1,initial-scale=1&quot;&gt;<\/p>\n<p>&lt;style amp-boilerplate&gt;<br \/>\nbody{-webkit-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-moz-animation:-amp-start 8s steps(1,end) 0s 1 normal both;-ms-animation:-amp-start 8s steps(1,end) 0s 1 normal both;animation:-amp-start 8s steps(1,end) 0s 1 normal both}<br \/>\n@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}<br \/>\n@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}<br \/>\n@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}<br \/>\n@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}<br \/>\n@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}<br \/>\n&lt;\/style&gt;<\/p>\n<p>&lt;noscript&gt;<br \/>\n&lt;style amp-boilerplate&gt;<br \/>\n  body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}<br \/>\n&lt;\/style&gt;<br \/>\n&lt;\/noscript&gt;<\/p>\n<p>&lt;style amp-custom&gt;<br \/>\n  amp-img.grey-placeholder {<br \/>\n   background-color: grey;<br \/>\n  }<br \/>\n&lt;\/style&gt;<\/p>\n<p>&lt;script async src=&quot;https:\/\/cdn.ampproject.org\/v0.js&quot;&gt;&lt;\/script&gt;<br \/>\n&lt;\/head&gt;<br \/>\n[\/java]<\/p>\n<p>Code inside body tag:<\/p>\n<p>[java]<br \/>\n&lt;body&gt;<br \/>\n   &lt;h1&gt;This is my First AMP Page&lt;\/h1&gt;<br \/>\n&lt;\/body&gt;<br \/>\n[\/java]<\/p>\n<p><b>Note:<\/b><br \/>\n&lt;!doctype html&gt; is required at the top.<br \/>\n&lt;html amp&gt; to tell browser that we are using amp.<br \/>\n&lt;link rel=&#8221;canonical&#8221; href=&#8221;_canonical-url_&#8221; \/&gt; it points to the regular HTML version of the AMP HTML document or to itself if no such HTML version exists.<br \/>\n&lt;script async src=&#8221;amp-js-library&#8221;&gt;&lt;\/script&gt; it includes AMP JS library.<\/p>\n<p><strong>Some extended HTML tags:<\/strong><\/p>\n<ul>\n<li>amp-img: replacement of HTML img tag<\/li>\n<li>amp-ad: container to display ad and a script is required<\/li>\n<li>amp-pixel: used to count the page views by typical tracking pixel<\/li>\n<li>amp-embed: used to embed elements<\/li>\n<li>amp-video: replacement of HTML5 video tag<\/li>\n<\/ul>\n<p><strong>Styling\/ Presentation<\/strong><\/p>\n<p>Styling is done by using common CSS, by using starting tag &lt;style amp-custom&gt;:<\/p>\n<p>[java]<br \/>\n&lt;style amp-custom&gt;<br \/>\n  body {<br \/>\n    background: white;<br \/>\n  }<br \/>\n  amp-img {<br \/>\n    border: 1px solid black;<br \/>\n  }<br \/>\n&lt;\/style&gt;<br \/>\n[\/java]<\/p>\n<p>Make sure there should be only one amp-custom style tag for styling. And even AMP page can have a single embedded stylesheet.<\/p>\n<p><strong>Validate AMP Page: <\/strong><\/p>\n<p>AMP is providing a validator built in browser only. No need to validate your code from other online validators. Just open your document in any browser through local server: XAMP\/WAMP.<br \/>\nAdd #development=1 after the url in address bar.<br \/>\ne.g http:\/\/localhost:8000\/first-amp-page.html#development=1<br \/>\nOpen Dev tool console in chrome browser and check validation errors.<\/p>\n<p>Congrats you have created first AMP Page and tested locally.<\/p>\n<p>You can explore more about this.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with [&hellip;]<\/p>\n","protected":false},"author":231,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"iawp_total_views":3,"footnotes":""},"categories":[3429,1],"tags":[3830,398,3831],"class_list":["post-38518","post","type-post","status-publish","format-standard","hentry","category-front-end-development","category-technology","tag-amp","tag-google","tag-page-optimization"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.0.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"Sunniya Maini\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/\" \/>\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=\"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog\" \/>\n\t\t<meta property=\"og:description\" content=\"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/\" \/>\n\t\t<meta property=\"og:image\" content=\"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png\" \/>\n\t\t<meta property=\"og:image:secure_url\" content=\"https:\/\/tothenewco.pro\/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=\"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog\" \/>\n\t\t<meta name=\"twitter:description\" content=\"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with\" \/>\n\t\t<meta name=\"twitter:image\" content=\"https:\/\/tothenewco.pro\/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\\\/amp-accelerated-mobile-pages-by-google\\\/#article\",\"name\":\"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog\",\"headline\":\"AMP- ACCELERATED MOBILE PAGES by Google\",\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sunniya\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#organization\"},\"datePublished\":\"2016-07-29T12:49:55+05:30\",\"dateModified\":\"2016-07-29T12:49:55+05:30\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#webpage\"},\"articleSection\":\"Front End Development, Technology, AMP, Google, Page optimization\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#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\\\/amp-accelerated-mobile-pages-by-google\\\/#listItem\",\"name\":\"AMP- ACCELERATED MOBILE PAGES by Google\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#listItem\",\"position\":3,\"name\":\"AMP- ACCELERATED MOBILE PAGES by Google\",\"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\\\/sunniya\\\/#author\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sunniya\\\/\",\"name\":\"Sunniya Maini\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#authorImage\",\"url\":\"https:\\\/\\\/newersworld-sf-static.tothenew.net\\\/prod\\\/profilePicFolder\\\/c6a9a1cd-24f9-4017-a182-256b5dcff7e9_sunniya.maini@tothenew.com.jpg\",\"width\":96,\"height\":96,\"caption\":\"Sunniya Maini\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#webpage\",\"url\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/\",\"name\":\"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog\",\"description\":\"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/amp-accelerated-mobile-pages-by-google\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sunniya\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.tothenew.com\\\/blog\\\/author\\\/sunniya\\\/#author\"},\"datePublished\":\"2016-07-29T12:49:55+05:30\",\"dateModified\":\"2016-07-29T12:49:55+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":"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog","description":"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with","canonical_url":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#article","name":"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog","headline":"AMP- ACCELERATED MOBILE PAGES by Google","author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/sunniya\/#author"},"publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"},"datePublished":"2016-07-29T12:49:55+05:30","dateModified":"2016-07-29T12:49:55+05:30","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#webpage"},"isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#webpage"},"articleSection":"Front End Development, Technology, AMP, Google, Page optimization"},{"@type":"BreadcrumbList","@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","position":1,"name":"Home","item":"https:\/\/tothenewco.pro\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","position":2,"name":"Technology","item":"https:\/\/tothenewco.pro\/blog\/category\/technology\/","nextItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#listItem","name":"AMP- ACCELERATED MOBILE PAGES by Google"},"previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#listItem","position":3,"name":"AMP- ACCELERATED MOBILE PAGES by Google","previousItem":{"@type":"ListItem","@id":"https:\/\/tothenewco.pro\/blog\/category\/technology\/#listItem","name":"Technology"}}]},{"@type":"Organization","@id":"https:\/\/tothenewco.pro\/blog\/#organization","name":"TO THE NEW Blog","url":"https:\/\/tothenewco.pro\/blog\/"},{"@type":"Person","@id":"https:\/\/tothenewco.pro\/blog\/author\/sunniya\/#author","url":"https:\/\/tothenewco.pro\/blog\/author\/sunniya\/","name":"Sunniya Maini","image":{"@type":"ImageObject","@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#authorImage","url":"https:\/\/newersworld-sf-static.tothenew.net\/prod\/profilePicFolder\/c6a9a1cd-24f9-4017-a182-256b5dcff7e9_sunniya.maini@tothenew.com.jpg","width":96,"height":96,"caption":"Sunniya Maini"}},{"@type":"WebPage","@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#webpage","url":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/","name":"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog","description":"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/tothenewco.pro\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/#breadcrumblist"},"author":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/sunniya\/#author"},"creator":{"@id":"https:\/\/tothenewco.pro\/blog\/author\/sunniya\/#author"},"datePublished":"2016-07-29T12:49:55+05:30","dateModified":"2016-07-29T12:49:55+05:30"},{"@type":"WebSite","@id":"https:\/\/tothenewco.pro\/blog\/#website","url":"https:\/\/tothenewco.pro\/blog\/","name":"TO THE NEW Blog","inLanguage":"en-US","publisher":{"@id":"https:\/\/tothenewco.pro\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"TO THE NEW BLOG","og:type":"blog","og:title":"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog","og:description":"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with","og:url":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/","og:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","og:image:secure_url":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png","twitter:card":"summary","twitter:site":"@tothenew","twitter:title":"AMP- ACCELERATED MOBILE PAGES by Google | TO THE NEW Blog","twitter:description":"Now-a-days, if anyone browse a website on mobile, everyone expect rich and HD graphics, smooth scrolling, fast animations, transitions to load quickly. Google introduces a new technique known as AMP. It\u2019s a technique to build static content web pages that render fast. Its basic structure consists of three different layers: AMP HTML: HTML extended with","twitter:image":"https:\/\/tothenewco.pro\/blog\/wp-content\/themes\/ttn\/images\/social-logo.png"},"aioseo_meta_data":{"post_id":"38518","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 14:33:28","updated":"2024-02-29 09:15:23","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:\/\/tothenewco.pro\/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:\/\/tothenewco.pro\/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\tAMP- ACCELERATED MOBILE PAGES by Google\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/tothenewco.pro\/blog"},{"label":"Technology","link":"https:\/\/tothenewco.pro\/blog\/category\/technology\/"},{"label":"AMP- ACCELERATED MOBILE PAGES by Google","link":"https:\/\/tothenewco.pro\/blog\/amp-accelerated-mobile-pages-by-google\/"}],"_links":{"self":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/38518","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/users\/231"}],"replies":[{"embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/comments?post=38518"}],"version-history":[{"count":0,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/posts\/38518\/revisions"}],"wp:attachment":[{"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/media?parent=38518"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/categories?post=38518"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/tothenewco.pro\/blog\/wp-json\/wp\/v2\/tags?post=38518"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}