1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>Default Template</title>
<style>
.borderedBlock {
background: #f3a11f;
color: blue;
font-weight: bold;
border: solid #E9601A;
border-width: thin;
padding: 2px 2px 2px 6px;
margin: 2px;
}
#header {
text-align: center;
}
#left {
padding: 10px;
width: 10%;
vertical-align: top;
float: left;
}
#content {
padding: 10px;
vertical-align: top;
float: left;
width: 80%;
}
#footer {
text-align: center;
}
.clear {
clear:left;
}
</style>
</head>
<body>
<div id="header" class="borderedBlock">
Header
</div>
<div id="left" class="borderedBlock">
Left
</div>
<div id="content" class="borderedBlock">
Content
</div>
<div class="clear"></div>
<div id="footer" class="borderedBlock">
Footer
</div>
</body>
</html> |