HTML CSS examples for CSS Layout:Layout
structure layout of an HTML page
<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>