Klart.
Først HTML'en :
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Titel</title>
<link rel="shortcut icon" href="favicon.ico">
<link rel="stylesheet" href="styles/ml.css" type="text/css" />
</head>
<body>
<table ID="topbar"> <!-- grå top -->
<tr>
<td height="100" class="borderbottom">
<pre> </pre>
</td>
</tr>
</table>
<table ID="headerbar"> <!-- sort overskriftbaggrund -->
<tr>
<td height="40" class="borderbottom">
<pre> </pre>
</td>
</tr>
</table>
<img ID="toppic" src="pictures/top.jpg"></img> <!-- overskrift -->
<img ID="menupic" src="pictures/menu.jpg"></img> <!-- menubaggrund -->
<a class="cell" style="position:absolute;left:10px;top:150px;z-index:102;width:100px;" href="
http://www.google.com/">Google</a> <table ID="mosafe"> <!-- mozilla safety -->
<tr>
<td>
<pre> </pre>
</td>
</tr>
</table>
<table ID="contens"> <!-- indhold -->
<tr>
<td class="borderleftrightbottom">
indhold<br />
</td>
</tr>
</table>
</body>
</html>
.. og så CSS'en :
body {
font-family: Trebuchet MS;
font-size: 16px;
color: #000000;
background-color: #6495ED;
margin: 0px 0px 0px 0px;
border: 0px;
padding: 0px 0px 0px 0px;
}
a:link {
color: #B0C4DE;
text-decoration: none;
}
a:visited {
color: #6589B4;
text-decoration: none;
}
a:active {
color: #FFFFFF;
text-decoration: none;
}
a:hover {
color: #FFFFFF;
text-decoration: none;
}
a:hover.cell {
background-color: #FDF5E6;
display: block;
}
#topbar {
position: absolute;
left: 0px;
top: 0px;
width: 100%;
background-color: #F2F2F2;
}
#headerbar {
width: 100%;
position :absolute;
left: 0px;
top: 100px;
z-index:2;
background-color: #000000;
}
#toppic {
position: absolute;
left: 203px;
top: 100px;
z-index:102;
border: 0px;
}
#menupic {
position: absolute;
left: 0px;
top: 100px;
z-index:100;
border-bottom: solid 4px #000000;
}
#mosafe {
position: absolute;
left: 200px;
top: 140px;
z-index: 50;
background-color: #000000;
width: 450px;
height: 10px;
}
#contens {
position: absolute;
left: 200px;
top: 143px;
z-index: 100;
background-color: #FFFFFF;
width: 450px;
}
table {
background-color: #FFFFFF;
color: #000000;
border: 0px;
font-family: Trebuchet MS;
font-size: 16px;
font-weight: normal;
margin: 0px;
padding: 0px;
border-collapse: collapse;
}
.borderbottom {
border-bottom: solid 4px #000000;
}
.borderleftrightbottom {
border-left: solid 3px #000000;
border-right: solid 3px #000000;
border-bottom: solid 4px #000000;
}
/Mnc