Advertisement
Guest User

Untitled

a guest
Oct 16th, 2015
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4.     <meta charset="UTF-8">
  5.     <meta name="viewport" content="width=device-width, initial-scale=1">
  6.     <title>Nick Gardner - Developer</title>
  7.  
  8.     <link rel='stylesheet' type='text/css' href='https://fonts.googleapis.com/css?family=Open+Sans'>
  9.     <link rel="stylesheet" type="text/css" href="css/main.css">
  10. </head>
  11. <body>
  12.     <div id="wrapper">
  13.         <div id="header">
  14.             <h1>&gt Nick Gardner<span>_</span></h1>
  15.         </div>
  16.  
  17.         <div id="nav">
  18.             <ul>
  19.                 <li><a href="../" id="active">&gt Home<span>_</span></a></li>
  20.                 <li><a href="../about/">&gt About<span>_</span></a></li>
  21.                 <li><a href="../portfolio/">&gt Portfolio<span>_</span></a></li>
  22.                 <li><a href="../resume/">&gt Resume<span>_</span></a></li>
  23.                 <li><a href="../blog">&gt Blog<span>_</span></a></li>
  24.                 <li><a href="../contact">&gt Contact<span>_</span></a></li>
  25.             </ul>
  26.         </div>
  27.  
  28.         <div id="content">
  29.             <?php
  30.                 for ($i = 1; $i <= 30; i++) {
  31.                     echo "<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Eveniet accusamus molestiae cupiditate modi iure vitae sapiente maiores aspernatur iusto, illo magni nulla quaerat, iste, ipsam consequuntur vero maxime impedit repudiandae.</p>";
  32.                     echo "<hr class='divider' />";
  33.                 }
  34.             ?>
  35.         </div>
  36.  
  37.         <div id="footer">
  38.             <h2>Copyright Nick Gardner 2015 &copy All Rights Reserved.</h2>
  39.         </div>
  40.  
  41.     </div>
  42. </body>
  43. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement