What does the HTML code look like?
<html>
<head>
<title>Homepage</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="container"></div>
</body>
</html>
How about the CSS styling?
body {
margin:0;
padding:0;
}
#container {
width:750px;
margin-right:auto;
margin-left:auto;
background:#008B00;
}
The HTML file is named index.html, and the CSS file is named style.css. Both files are located in the same folder.