Advertisement
Felanpro

<ul> fun

May 21st, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.79 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html>
  4.  
  5.     <head>
  6.        
  7.         <title>Training</title>
  8.        
  9.         <style>
  10.        
  11.         #first_list
  12.         {
  13.             list-style-type: none;
  14.             margin: 0;
  15.             padding: 0;
  16.         }
  17.        
  18.         li a
  19.         {
  20.             display: block;
  21.             width: 60px;
  22.             background-color: lightblue;
  23.             padding: 8px 10px 10px;
  24.             text-decoration: none;
  25.             text-align: center;
  26.         }
  27.        
  28.         li a:hover
  29.         {
  30.             background-color: yellow;
  31.             color: black;
  32.         }
  33.        
  34.         </style>
  35.     </head>
  36.    
  37.         <body>
  38.        
  39.             <h3 style="font-family: helvetica;">Vertical Navigation Bar.</h3>
  40.        
  41.             <ul id="first_list">
  42.            
  43.                 <li><a href = "#home">Home</a></li>
  44.                 <li><a href = "#News">Register</a></li>
  45.                 <li><a href = "#Contact">Contact</a></li>
  46.                 <li><a href="#About">About</a></li>
  47.            
  48.             </ul>
  49.        
  50.         </body>
  51.  
  52. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement