Advertisement
Guest User

Cool HTML header

a guest
Jul 25th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.97 KB | None | 0 0
  1. <html>
  2.     <head>
  3.         <title>My Website</title>
  4.         <style type="text/css">
  5.             body { margin: 0;}
  6.             div.container { margin: auto; width: 50%; padding: 10px; border: 3px solid red;}
  7.             body header { display: inline-block; background: #333; width: 100%; padding-left: 100px;}
  8.             body header h1 { display: inline-block; color: red; padding: 17px;}
  9.             body header ul { display: inline-block; list-style-type: none;}
  10.             body header ul li { display: inline-block; color: red; list-style-type: none; padding: 12px; background: black; border: 3px solid red;}
  11.             body header ul li a { color: white;}
  12.             body header ul li:hover { background: white;}
  13.             body header ul li a:hover { color: red;}
  14.         </style>
  15.     </head>
  16.     <body>
  17.      <div.container>
  18.         <header>
  19.             <h1>My Website</h1>
  20.             <ul>
  21.                 <li><a href="#">Home</a></li>
  22.                 <li><a href="#">Downloads</a></li>
  23.                 <li><a href="#">Contact</a></li>
  24.                 <li><a href="#">About</a></li>
  25.             </ul>
  26.         </header>
  27.      </div>
  28.  
  29.     </body>
  30.  
  31.  
  32. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement