Created
February 2, 2018 10:55
-
-
Save samikeijonen/453eddab466768690f8f9898101cde8f to your computer and use it in GitHub Desktop.
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>Semantic HTML</title> | |
| </head> | |
| <body> | |
| <header> | |
| <nav> | |
| <ul> | |
| <li><a href=”/home”>Home</a></li> | |
| <li><a href=”/about”>About</a></li> | |
| <li><a href=”/semantics”>Semantics</a></li> | |
| </ul> | |
| </nav> | |
| </header> | |
| <main> | |
| <article> | |
| <h1>Semantic HTML</h1> | |
| <p>That wasn’t so hard.</p> | |
| </article> | |
| </main> | |
| <aside> | |
| <p>Additional information.</p> | |
| </aside> | |
| <footer> | |
| <p>Information about the site.</p> | |
| </footer> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment