Advertisement
Guest User

something

a guest
May 21st, 2015
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.45 KB | None | 0 0
  1. <!DOCTYPE HTML>
  2. <html>
  3.  
  4. <head>
  5.     <title>Countries</title>
  6.     <meta name="description" content="website description"/>
  7.     <meta name="keywords" content="website keywords, website keywords"/>
  8.     <meta http-equiv="content-type" content="text/html; charset=windows-1252"/>
  9.     <link rel="stylesheet" type="text/css" href="style/style.css"/>
  10. </head>
  11.  
  12. <body>
  13. <div id="main">
  14.     <div id="header">
  15.         <div id="logo">
  16.             <div id="logo_text">
  17.                 <!-- class="logo_colour", allows you to change the colour of the text -->
  18.                 <h1><a href="/countries">Coun<span class="logo_colour">tries</span></a></h1>
  19.  
  20.                 <h2>Viewing countries</h2>
  21.             </div>
  22.         </div>
  23.         <div id="menubar">
  24.             <ul id="menu">
  25.                 <!-- put class="selected" in the li tag for the selected page - to highlight which page you're on -->
  26.                 <li class="selected"><a href="/countries">Home</a></li>
  27.                 <li><a href="/countriesNotAvailable">A Page</a></li>
  28.                 <li><a href="#">Another Page</a></li>
  29.                 <li><a href="#">Contact Us</a></li>
  30.             </ul>
  31.         </div>
  32.     </div>
  33.     <div id="site_content">
  34.     </div>
  35. </div>
  36. <div id="footer">
  37.     <p><a href="/countries">Home</a> | <a href="#">A Page</a> | <a href="#">Another Page</a>
  38.         | <a href="#">Contact Us</a></p>
  39.  
  40.     <p>Made by Kasper Svensson</p>
  41. </div>
  42. </div>
  43. </body>
  44. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement