Guest User

Untitled

a guest
Feb 7th, 2016
107
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 1.92 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3.  
  4. <head>
  5.     <meta charset="utf-8">
  6.     <title>Visit Clare</title>
  7.     <style type="text/css">
  8.         body {
  9.             width: 100%;
  10.             margin: 0px;
  11.             background-color: #F5F5F5;
  12.         }
  13.        
  14.         #container {
  15.             height: 100%;
  16.         }
  17.  
  18.         #navigation{
  19.             color: white;
  20.             background-color: #292526;
  21.             width: 100%;
  22.             position: fixed;
  23.             top: 0px;
  24.             padding: 0.5% 0.5%;
  25.         }
  26.        
  27.         #navigationLeft {
  28.             width: 24.5%;
  29.             display: inline-block;
  30.             vertical-align: middle;
  31.             font-size: 180%;
  32.         }
  33.  
  34.         #navigationRight {
  35.             width: 74.5%;
  36.             display: inline-block;
  37.             vertical-align: middle;
  38.         }
  39.        
  40.         #navigation ul{
  41.             float: right;
  42.         }
  43.        
  44.         #navigation ul li {
  45.             display: inline;
  46.         }
  47.  
  48.         #navigation a {
  49.             font-size: 120%;
  50.             color: white;
  51.             text-decoration: none;
  52.         }
  53.        
  54.         #footer{
  55.             color: white;
  56.             background-color: #292526;
  57.             width: 100%;
  58.             padding: 0.5% 0.5%;
  59.         }      
  60.     </style>
  61. </head>
  62.  
  63. <body>
  64.     <div id="container">
  65.    
  66.         <div id="navigation">
  67.             <div id="navigationLeft">
  68.                 <a href="#">Visit Clare Ireland</a>
  69.             </div><div id="navigationRight">
  70.                 <ul>    
  71.                   <li><a href="#">Home |</a></li>
  72.                   <li><a href="#">Maps |</a></li>
  73.                   <li><a href="#">Hotels |</a></li>
  74.                   <li><a href="#">Appartments |</a></li>
  75.                   <li><a href="#">Attractions |</a></li>
  76.                   <li><a href="#">Essentials |</a></li>
  77.                   <li><a href="#">Bars and Clubs |</a></li>
  78.                   <li><a href="#">Transport</a></li>
  79.                 </ul>
  80.             </div>
  81.         </div>
  82.        
  83.         <div id="banner">
  84.             <img src="http://i.imgur.com/VsIRZNZ.jpg" alt="The Cliffs Of Moher"/>
  85.         </div>
  86.        
  87.         <div id="footer">
  88.             <p>Placeholder</p>
  89.         </div>
  90.        
  91.     </div>
  92. </body>
  93.  
  94. </html>
Add Comment
Please, Sign In to add comment