Last active
July 14, 2024 22:34
-
-
Save DominoPivot/687e5d9f38d78f0ed403719b286dfb60 to your computer and use it in GitHub Desktop.
Minimalist HTML page template
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"> | |
| <meta charset="utf-8"> | |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
| <title>Template Site</title> | |
| <header> | |
| <a href="/">Template Site</a> | |
| </header> | |
| <nav> | |
| <ul> | |
| <li><a href="/blog/">Blog</a> | |
| <li><a href="/store/">Merch</a> | |
| <li><a href="/about/">About</a> | |
| </ul> | |
| </nav> | |
| <main> | |
| <h1>Main Content</h1> | |
| <p>Lorem ipsum dolor sit amet consectetur adipisicing elit. | |
| Magni quo, doloremque ea asperiores numquam distinctio, | |
| ut nam alias nihil iure nobis voluptates odio tenetur. | |
| <p>Fugiat eum rerum quibusdam sapiente consequuntur. | |
| </main> | |
| <aside> | |
| <nav> | |
| <ul> | |
| <li><a>Article A</a> | |
| <li><a>Article B</a> | |
| <li><a>Article C</a> | |
| </ul> | |
| </nav> | |
| </aside> | |
| <footer> | |
| <small>This code is public domain.</small> | |
| </footer> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment