Et simpelt grundlæggende layout:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "
http://www.w3.org/TR/html4/strict.dtd"><html>
<head>
<title>Simpelt grundlayout</title>
<meta name="keywords" content="søgeord adskilt af komma">
<style type="text/css">
html,body{margin:0px;border:0px;padding:0px;font-family:tahoma,verdana,arial,sans-serif;font-size:small;}
#site{width:960px;margin: 0 auto;}
#banner{height:120px;background:url(ditBanner.jpg) #cba;}
#menu{width:180px;float:left;background-color:yellow;}
#indhold{width:780px;float:left;}
#footer{height:45px;text-align:center;background-color:#aaf;}
.clearDiv{clear:both;font-size:0;line-height:0;}
</style>
</head>
<body>
<div id="site">
<div id="banner"> </div>
<div id="menu">Menu<br><br><br><br><br><br><br><br><br><br><br><br><br><br><br><br></div>
<div id="indhold">
<h1>Indholdet</h1>
</div>
<div class="clearDiv"> </div>
<div id="footer">© 2008 roenving</div>
</div>
</body>
</html>