Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <!DOCTYPE html>
- <html lang="en">
- <head>
- <title>Simple Website</title>
- <meta charset="utf-8">
- <link rel="stylesheet" type="text/css" href="simple-website.css">
- </head>
- <body>
- <nav>
- <ul>
- <li><a href="">Home</a></li>
- <li><a href="">Tutorials</a></li>
- <li><a href="">About</a></li>
- <li><a href="">Newsletter</a></li>
- <li><a href="">Contact</a></li>
- </ul>
- </nav>
- <section>
- <article>
- <header>
- <h1>Just Another Day</h1>
- <p>Written by Christina on January 11th</p>
- </header>
- <p>This is my second blog entry, and I just wanted to check it on.</p>
- </article>
- <article>
- <header>
- <h1>My First Blog Entry</h1>
- <p>Written by Christina on January 11th</p>
- </header>
- <p>I'm so happy to write my first blog entry - yay!</p>
- </article>
- </section>
- <footer>
- <p>© Copyright 2009 Annie K.</p>
- </footer>
- </body>
- </html>
Add Comment
Please, Sign In to add comment