Website Layout 1 Using Visual studio

Website Layout 1 Using Visual studio

Tutorial:


StyleSheet.css File:
body 
{
    width:100%;
    height:100%; 
     background-color:Lime;
}

#divMain
{
     padding-top:10px;
   width:100%;
    height:1200px; 
     background-color:Gray;
     
     }
      .divLogo
     {width:100%;
    height:100px; 
         
         }
         
          #t1
     {
         padding-top:0px;
         margin-top: 50px;
  margin-bottom: 100px;
  margin-right: 50px;
  margin-left:50px;
  
         width:80%;
    height:1000px; 
     background-color:White;
         
         }
         
          .nav  
             {
                 overflow: hidden;
  background-color: #333;
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}


.nav:hover {
  background-color:Lime;
  color: black;
}     
            

Comments