structure layout of an HTML page - HTML CSS CSS Layout

HTML CSS examples for CSS Layout:Layout

Description

structure layout of an HTML page

Demo Code

ResultView the demo in separate window

<html>
 <head> 
  <meta name="viewport" content="width=device-width, initial-scale=1"> 
  <style id="compiled-css" type="text/css">
* {<!--from www  .j a  v  a2s .  com-->
   clear:both;
}

#logo {
   height:41px;
   background-color:Chartreuse;
}

#content {
   margin-top:11px;
   background-color:yellow;
}
</style> 
 </head> 
 <body> 
  <heading> 
  </heading> 
  <div id="logo">
    Lorem 
  </div> 
  <div id="navigation"> 
   <a href="">Lore</a> 
  </div> 
  <div id="content">
    Lorem ips 
  </div>  
 </body>
</html>

Related Tutorials