AMP: The Next Webpage Standard Markup and in SEO?

Hello W3c Community!

AMP is a way to build web pages for static content that render fast.

Accelerated Mobile Pages (AMP) are an open-source initiative to provide 
web pages that load fast and look good on mobile devices, even over slow 
networks.

Sources:
https://www.ampproject.org/docs/get_started/about-amp.html#amp-html
https://googleblog.blogspot.com/2015/10/introducing-accelerated-mobile-pages.html
https://github.com/ampproject/amphtml

Google Search Console:
https://www.quora.com/What-is-Accelerated-Mobile-Pages-in-Google-Webmaster-tool-How-It-can-be-used-in-SEO

Google Search Console:
https://support.google.com/webmasters/answer/6328309?authuser=3

Sample implementation with Schema.org

<!doctype html>
<html ⚡>
   <head>
     <meta charset="utf-8">
     <title>Sample document</title>
     <link rel="canonical" href="./regular-html-version.html">
     <meta name="viewport" 
content="width=device-width,minimum-scale=1,initial-scale=1">
     <style amp-custom>
       h1 {color: red}
     </style>
     <script type="application/ld+json">
     {
       "@context": "http://schema.org",
       "@type": "NewsArticle",
       "headline": "Article headline",
       "image": [
         "thumbnail1.jpg"
       ],
       "datePublished": "2015-02-05T08:00:00+08:00"
     }
     </script>
     <script async custom-element="amp-carousel" 
src="https://cdn.ampproject.org/v0/amp-carousel-0.1.js"></script>
     <style>body {opacity: 0}</style><noscript><style>body {opacity: 
1}</style></noscript>
     <script async src="https://cdn.ampproject.org/v0.js"></script>
   </head>
   <body>
     <h1>Sample document</h1>
     <p>
       Some text
       <amp-img src=sample.jpg width=300 height=300></amp-img>
     </p>
     <amp-ad width=300 height=250
         type="a9"
         data-aax_size="300x250"
         data-aax_pubname="test123"
         data-aax_src="302">
     </amp-ad>
   </body>
</html>

Questions:

Currently, big publishers are using AMP. Do you think small blogs and 
websites should also implement an AMP version of their site?
What about the future of SEO on AMP?
Should front-end designers adapt to this change?

I hope the W3C community can address this upcoming AMP adaptation.

Thank you.


Yours Truly,


Baloydi Lloydi

https://asknoypi.com/
https://ph.linkedin.com/in/baloydi

Received on Thursday, 4 February 2016 10:37:44 UTC