Advertisement
Guest User

Home_page

a guest
Oct 23rd, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.00 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
  2.    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml">
  4.   <head>
  5.       <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  6.  
  7.       <title>Home</title>
  8.       <meta name="keywords" content="enter,keywords,here" />
  9.       <meta name="description" content="enter,desc,here" />
  10.  
  11.       <link href="style.css" rel="stylesheet" type="text/css" />
  12.  
  13.     </head>
  14. <body>
  15. <div class="wrapper">
  16.     <nav>
  17.         <ul>
  18.             <li><a href="home.htm">Home</a></li>
  19.             <li><a href="about.htm">About me</a></li>
  20.             <div class="dropdown">
  21.                 <a href="#" class="dropdown-content">Projects</a>
  22.                 <div class="dropdown-content">
  23.                 <a href="allotment.htm">Allotment</a>
  24.                 <a href="garden.htm">Garden</a>
  25.                 </div>
  26.             </li>
  27.             <li><a href="resources.htm">Useful resources</a></li>
  28.             <li><a href="contact.htm">Contact</a></li>
  29.         </ul>
  30.     </nav>
  31.    
  32.     <div class="panel">
  33.         <h2>Post title</h2>
  34.         <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit.</p>
  35.         <p>Donec urna augue, semper id pretium eget, malesuada vel tortor.</p>
  36.         <p>Nunc vulputate sapien eu magna ultricies et pretium lacus congue.</p>
  37.         <p>Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.</p>
  38.         <p>In quis lorem tincidunt ligula blandit dignissim ut a turpis.</p>
  39.         <p>Vestibulum in sapien metus. Donec turpis massa, euismod sed pellentesque sed, molestie ut nulla.
  40.         Donec cursus, justo sed congue vulputate, nibh massa accumsan nulla, eleifend adipiscing magna leo id lorem.
  41.         Suspendisse semper velit eu leo fringilla hendrerit. Maecenas sit amet tellus risus. Ut vitae mauris arcu.
  42.         In hac habitasse platea dictumst. Sed congue sodales ipsum, dictum ultricies massa aliquet ut. Suspendisse potenti.</p>
  43.         <p><i>Posted by: Richard Dallman (dd/mm/yy)</i></p>
  44.     </div>
  45.    
  46.  
  47. </div>
  48.     <footer>
  49.         <div class="wrapper">
  50.             &copy; 2015 Richard Dallman
  51.         </div>
  52.     </footer>
  53. </body>
  54.  
  55. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement