Here is a barebones version but it should get you started.
CSS- I have placed it in between the <head></head> as you will see.
In a perfect world it should go in an external stylesheet but since you sound quite new at this.. leave it like this for now.
- Code: Select all
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>Untitled Document</title>
<style>
#wrapper {
width: 780px;
margin: 0 auto;
}
#logo {
width: 475px;
float: left;
height: 175px;
}
.links {
width: 150px;
height: 175px;
float: left;
}
ul {
list-style: none;
}
li {
not styled yet
}
</style>
</head>
html this just follows:
- Code: Select all
<body>
<div id="wrapper">
<div id="logo">Logo can go here</div>
<div class="links">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
<div class="links">
<ul>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
<li><a href="#">Link</a></li>
</ul>
</div>
</div>
</body>
</html>
Hope that helped!