-Annie-

03.Simple-Website

Feb 2nd, 2017
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.89 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <title>Simple Website</title>
  5.     <meta charset="utf-8">
  6.     <link rel="stylesheet" type="text/css" href="simple-website.css">
  7. </head>
  8. <body>
  9.     <nav>
  10.         <ul>
  11.             <li><a href="">Home</a></li>
  12.             <li><a href="">Tutorials</a></li>
  13.             <li><a href="">About</a></li>
  14.             <li><a href="">Newsletter</a></li>
  15.             <li><a href="">Contact</a></li>
  16.         </ul>
  17.     </nav>
  18.     <section>
  19.         <article>
  20.             <header>
  21.                 <h1>Just Another Day</h1>
  22.                 <p>Written by Christina on January 11th</p>
  23.             </header>
  24.             <p>This is my second blog entry, and I just wanted to check it on.</p>
  25.         </article>
  26.         <article>
  27.             <header>
  28.             <h1>My First Blog Entry</h1>
  29.             <p>Written by Christina on January 11th</p>
  30.             </header>
  31.             <p>I'm so happy to write my first blog entry - yay!</p>
  32.         </article>
  33.     </section>
  34.     <footer>
  35.         <p>&copy; Copyright 2009 Annie K.</p>
  36.     </footer>
  37. </body>
  38. </html>
Add Comment
Please, Sign In to add comment