Last active
December 16, 2015 12:38
-
-
Save hfm/5435611 to your computer and use it in GitHub Desktop.
HTML5 Markup Sample
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| <meta http-equiv="content-language" content="ja"> | |
| <meta charset="UTF-8"> | |
| <meta name="author" content="****"> | |
| <meta name="viewport" content="width=device-width, minimum-scale=1, maximum-scale=1"> | |
| <meta property="og:title" content="YOUR NAME"> | |
| <meta property="og:type" content="article/website/book/profile/etc."> | |
| <meta property="og:image" content="****"> | |
| <meta property="og:url" content="http://"> | |
| <meta property="og:locale" content="ja_JP"> | |
| <meta property="og:site_name" content=""> | |
| <meta property="og:description" content=""> | |
| <meta http-equiv="default-style" content="****.css"> | |
| <meta http-equiv="default-style" content="****.css"> | |
| <link rel="stylesheet" media="all" type="text/css" href="****.css"> | |
| <script src="****.js"></script> | |
| </head> | |
| <body> | |
| <header> | |
| <h1></h1> | |
| <nav></nav> | |
| </header> | |
| <section> | |
| <article></article> | |
| <article></article> | |
| <nav></nav> | |
| </section> | |
| <article> | |
| <hgroup> | |
| <h1></h1> | |
| <h2></h2> | |
| </hgroup> | |
| <aside> | |
| <h1></h1> | |
| <p></p> | |
| </aside> | |
| </article> | |
| <footer> | |
| Copiright(C) | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment