AMP Websites 対応ページのテンプレートを下記に示します。
<!doctype html> <html amp lang="ja"> <head> <meta charset="utf-8"> <script async src="https://cdn.ampproject.org/v0.js"></script> <title>AMPテンプレート</title> <link rel="canonical" href="https://www.example.com/amp_page.html"> <meta name="viewport" content="width=device-width,minimum-scale=1,initial-scale=1"> <style amp-boilerplate>body{-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}@-webkit-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-moz-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-ms-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@-o-keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}@keyframes -amp-start{from{visibility:hidden}to{visibility:visible}}</style><noscript><style amp-boilerplate>body{-webkit-animation:none;-moz-animation:none;-ms-animation:none;animation:none}</style></noscript> </head> <body> <h1>AMPテンプレート</h1> <amp-img src="welcome.jpg" alt="Welcome" height="400" width="800"></amp-img> </body> </html>
<html ⚡ lang="ja">
// AMPページと非AMPページがある場合の非AMPページ(AMPページのURL) <link rel="amphtml" href="https://www.example.com/amp_page.html"> // AMPページと非AMPページがある場合のAMPページ(非AMPページのURL) <link rel="canonical" href="https://www.example.com/no_amp_page.html"> // AMPページのみの場合のAMPページ(自分自身のURL) <link rel="canonical" href="https://www.example.com/amp_page.html">
AMP で使用される HTML は、通常の HTML と少し異なります。下記に主なルールを紹介します。
詳細は下記を参考にしてください。