Advertisement
phuncadelic

Untitled

May 27th, 2016
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 2.67 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4.     <title>Jeff BBC</title>
  5.  
  6.     <meta charset="utf-8" />
  7.     <meta http-equiv="Content-type" content="text/html; charset=utf-8" />
  8.     <meta name="viewport" content="width=device-width, initial-scale=1" />
  9.    
  10.     <style type="text/css">
  11.    
  12.     body {
  13.         margin:0;
  14.         font-family:arial;
  15.    
  16.     }
  17.    
  18.     #topbar {
  19.         background-color:#7a0000;
  20.         width:100%;
  21.         height:40px;
  22.         color:white;
  23.        
  24.    
  25.     }
  26.    
  27.     .fixedwidth {
  28.         width:1000px;
  29.         margin:0 auto;
  30.        
  31.     }
  32.     #logodiv {
  33.         padding-top:5px;
  34.         float:left;
  35.         border-right:1px solid #990000;
  36.         padding-right:10px;
  37.         }
  38.        
  39.        
  40.     #signindiv {
  41.         font-weight:bold;
  42.         padding:6px 0px 9px 20px;
  43.         font-size:0.9em;
  44.         border-right:1px solid #990000;
  45.         width:200px;
  46.         float:left;
  47.         border-right:1px solid #990000;
  48.        
  49.        
  50.         }
  51.     #signindiv img {
  52.         position:relative;
  53.         top:3px;
  54.     }
  55.        
  56.     #signindiv p{
  57.         margin-left:20px;
  58.         }  
  59.     #topmenudiv {
  60.         float:left
  61.        
  62.         }
  63.    
  64.     #topmenudiv ul {
  65.         margin:0;
  66.         padding:0;
  67.         }
  68.        
  69.     #topmenudiv li{
  70.         list-style:none;
  71.         font-weight:bold;
  72.         font-sive:0.9em;
  73.         border-right:1px solid #990000;
  74.         height:100%;
  75.         padding:10px 10px 10px 10px;
  76.         float:left;
  77.         }  
  78.     #searchdiv {
  79.         float:left;
  80.         padding:8px 0 0 10px;
  81.     }
  82.     #searchdiv input {
  83.         height:15px;
  84.         padding:3px;
  85.         font-size:0.9em;
  86.         border:none;
  87.         background-image:url("images/magnify.png");
  88.         background-repeat:no-repeat;
  89.         background-position:right center;
  90.         }
  91.     .break{
  92.         clear:both;
  93.         }
  94.     #newsbar {
  95.         background-color:#990000;
  96.         width:100%;
  97.         height:80px;
  98.         color:white;
  99.         }
  100.     #newsbar p {
  101.         margin:0;
  102.         padding:0;
  103.         padding-top:10px;
  104.        
  105.         }
  106.     #newsheader {
  107.         font-size:3em;
  108.        
  109.         }
  110.     #uk {
  111.         font-size:0.7em;
  112.         padding-left:20px;
  113.         }
  114.     #rss {
  115.         float:right;
  116.         }
  117.        
  118.  
  119.     </style>
  120. </head>
  121.  
  122.  
  123. <body>
  124.  
  125.     <div id="container">
  126.    
  127.         <div id="topbar">
  128.        
  129.             <div class="fixedwidth">
  130.            
  131.             <div id="logodiv">
  132.                 <img src="images/bbclogo.png" />
  133.                
  134.             </div>
  135.            
  136.                        
  137.             <div id="signindiv">
  138.            
  139.               <img src="images/signing.png" /> Sign In
  140.            
  141.            
  142.             </div>
  143.            
  144.            
  145.             <div id="topmenudiv">
  146.                 <ul>
  147.                 <li>News</li>
  148.                 <li>Sports</li>
  149.                 <li>Weather</li>
  150.                 <li>iPlayer</li>
  151.                 <li>TV</li>
  152.                 <li>Radio</li>
  153.                 <li>More...</li>
  154.                 </ul>
  155.            
  156.            
  157.            
  158.             </div>
  159.             <div id="searchdiv">
  160.                
  161.                 <input type="text" placeholder="Search"/>
  162.            
  163.             </div>
  164.             </div>
  165.             <div class="break"> </div>
  166.            
  167.             <div id="newsbar">
  168.        
  169.            
  170.             <div class="fixedwidth">
  171.            
  172.                 <p id="newsheader">NEWS<span id="uk">UK</span></p>
  173.                 </div>
  174.                
  175.            
  176.             <div class="rss">
  177.              RSS
  178.             </div>
  179.            
  180.            
  181.            
  182.        
  183.        
  184.         </div>
  185.         </div>
  186.     </div>
  187.  
  188.    
  189.    
  190.    
  191. </body>
  192. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement