rootUser

(SdLab3) Navigation

Dec 12th, 2016
49
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.99 KB | None | 0 0
  1. <html>
  2.   <head>
  3.   <style>
  4.     header{
  5.         margin:2px;
  6.         padding:10px;
  7.         height:5em;
  8.         width:60em;
  9.         background-color:grey;
  10.         border:1px solid lightblue;
  11.         color:white;
  12.         text-align:center;
  13.        
  14.       }
  15.       nav{
  16.         display:block;
  17.         margin:2px;
  18.         padding:10px;
  19.         height:20em;
  20.         width:5em;
  21.         background-color:lightgrey;
  22.         border:7px solid green;
  23.         color:white;
  24.         text-align:left;
  25.         float:left;
  26.       }
  27.        a:hover{
  28.            display:inline;
  29.            color:green;
  30.            background-color:yellow;
  31.       }
  32.     </style>  
  33.    
  34.   </head>
  35.  
  36.   <body>
  37.  
  38.     <header>
  39.     <h1>Second Lab</h1>
  40.  
  41.     </header>
  42.     <nav>
  43.  
  44.        <a href="some.html">HOME</a>
  45.        <a href="some.html">CONTACT</a>
  46.        <a href="some.html">RELOAD</a>
  47.  
  48.     </nav>
  49.     <section>
  50.      Todays objective is to learn basics of css and also php
  51.     </section>
  52.  
  53.   </body>
  54. </html>
Add Comment
Please, Sign In to add comment