-
-
Save nht1996/f15657495e458a5aee0dfadfc90ee0b3 to your computer and use it in GitHub Desktop.
The standard HTML5 page structure.
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> | |
| <!--To get more Meta Tags visit here: https://gist.github.com/MicBrain/46a9723158307fd30db66a4b2af85411 --> | |
| <meta charset="utf-8"> | |
| <meta http-equiv="content-type" content="text/html"> | |
| <title> The name of your website. </title> | |
| </head> | |
| <body> | |
| <header> | |
| <nav> | |
| <ul> | |
| <li> Put your Website MENU here. </li> | |
| </ul> | |
| </nav> | |
| </header> | |
| <section> | |
| <article> | |
| <header> | |
| <h2>The title of Article 1</h2> | |
| <p> Content of Article 1.</p> | |
| </header> | |
| <header> | |
| <h2>The title of Article 2</h2> | |
| <p> Content of Article 2.</p> | |
| </header> | |
| </article> | |
| </section> | |
| <aside> | |
| <h2> Section Tite. </h2> | |
| <p> Content of the section. </p> | |
| </aside> | |
| <footer> | |
| <p>Copyright @year @name</p> | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment