Created
June 27, 2016 07:35
-
-
Save ramsunvtech/7819dbab26fea697a6f3eff7f0070de9 to your computer and use it in GitHub Desktop.
Simple 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 lang="en"> | |
| <head> | |
| <meta charset="utf-8"> | |
| <title>Title Goes here</title> | |
| <link rel="stylesheet" href="<Your css file Path>"> | |
| </head> | |
| <body> | |
| <header>Header Goes Here!</header> | |
| <nav> Your Menu with UL & LI elements can come here</nav> | |
| <h1>Page Heading</h1> | |
| <article> | |
| <h2>Article Heading</h2> | |
| <p>Article Goes here</p> | |
| </article> | |
| <footer> | |
| <p>Copyright Content Goes here</p> | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment