- Impact
- 0
I managed to code together a layout using HTML and CSS. I am having some problems and I need your help. I took a picture of the site and attatched it to the thread.
The HTML I am using is:
The CSS is:
So, yeah can you help me add what I wanted?
The HTML I am using is:
HTML:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Text</title>
<link rel="stylesheet" type="text/css" href="stylesite.css" />
</head>
<body>
<div id="header"><h1>Text</h1></div>
<div id="left">Links</div>
<div id="content">Site content here</div>
<div id="right">Site content here</div>
<div id="footer">Footer</div>
</body>
</html>
The CSS is:
HTML:
* {margin:0 auto;}
body{
background-color: silver; }
#header {
background-color: silver;
line-height: 100px;
text-align: center;
}
#left {
float: left;
width: 200px;
border: 1px solid #000000;
}
#content {
margin: 0 210px 0 210px;
border: 1px solid #000000;
}
#right {
float: right;
width: 200px;
border: 1px solid #000000;
}
#footer {
background-color: silver;
line-height: 100px;
text-align: center;
}
So, yeah can you help me add what I wanted?





