Advertisement
Cinestra

Navigation Bar Code

Jul 15th, 2015
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.87 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3.  
  4. <html>
  5.     <head>
  6.         <title> Learning Navigation Bars </title>
  7.         <style>
  8.         body
  9.         {
  10.         margin: 0px;
  11.         padding: 0px;
  12.         }
  13.  
  14.         .nav
  15.         {
  16.         text-align: center;
  17.         }
  18.  
  19.         .nav ul
  20.         {
  21.         width: 100%;
  22.         height: 60px;
  23.         background-color: grey;
  24.         list-style: none;
  25.         }
  26.  
  27.         .nav li
  28.         {
  29.         display: inline;
  30.         }
  31.  
  32.         .nav a
  33.         {
  34.         color: white;
  35.         margin-left: 65px;
  36.         margin-right: 65px;
  37.         font-size: 20px;
  38.         text-decoration: none;
  39.         line-height: 60px;
  40.         display: inline-block;
  41.         }
  42.  
  43.         .nav li:hover
  44.         {
  45.         background-color: #EE8822;
  46.         padding-top: 23px;
  47.         padding-bottom: 20px;
  48.         }
  49.  
  50.         </style>
  51.     </head>
  52.  
  53.     <body>
  54.  
  55.         <div class="nav">
  56.         <ul>
  57.             <li> <a href="#"> Home </a> </li>
  58.             <li> <a href="#"> Web Design</a> </li>
  59.             <li> <a href="#"> About Us </a> </li>
  60.             <li> <a href="#"> Contact </a> </li>
  61.         </ul>
  62.         </div>
  63.  
  64.     </body>
  65.  
  66. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement