Advertisement
Advertisement
| 05.25.2008 at 11:04AM PDT, ID: 23431458 |
|
[x]
Attachment Details
|
||
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: |
---------HTML CODE------------
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="stylesheet" href="css/dummy.css" />
<title>Dummy page</title>
</head>
<body>
<div id="adspot"> Ads</div>
<div id="projspot"> Projects</div>
<div id="storespot"> Store</div>
<div id="content"> Content</div>
</body>
</html>
-------------------dummy.css code ------------------
body { padding:0; margin:0; }
#adspot { background:#CCCC00; float:left; width:450px; height:289px; margin:0; padding:0;}
#projspot { background:#006699; height:144px; }
#storespot { background:#006600; height:145px; }
#content { position:relative; background:#FF9900; width:100%; height:500px; }
|