Zeke2
01-14-2013, 12:28 AM
Hi, I was wondering if this is an appriopriate way for structuring a website. I think it'll work? But I don't know if this is the right way or just another way of doing it. Any advise would be appriciated :)
<!DOCTYPE html>
<html>
<head>
<style>
div.ex {
margin:auto;
width:800px;
height:1200px;
padding:1px;
border:1px solid blue;
}
div.exe {
margin:auto;
width:600px;
height:100px;
border:1px solid red;
}
div.exe2 {
margin:auto;
width:798px;
height:20px;
border:1px solid red;
}
div.exe3 {
float:left;
width:50px;
height:500px;
border:1px solid red;
}
div.content {
float:left;
width:700px;
height:500px;
border:1px solid red;
}
div.right {
float:left;
width:44px;
height:500px;
border:1px solid red;
}
</style>
</head>
<body>
<div class="ex">
<div class="exe">banner
</div>
<div class="exe2">Nav
</div>
<div class="exe3">VerNav fffffffff
</div>
<div class="content">Content
</div>
<div class="right">Right nav
</div>
</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<style>
div.ex {
margin:auto;
width:800px;
height:1200px;
padding:1px;
border:1px solid blue;
}
div.exe {
margin:auto;
width:600px;
height:100px;
border:1px solid red;
}
div.exe2 {
margin:auto;
width:798px;
height:20px;
border:1px solid red;
}
div.exe3 {
float:left;
width:50px;
height:500px;
border:1px solid red;
}
div.content {
float:left;
width:700px;
height:500px;
border:1px solid red;
}
div.right {
float:left;
width:44px;
height:500px;
border:1px solid red;
}
</style>
</head>
<body>
<div class="ex">
<div class="exe">banner
</div>
<div class="exe2">Nav
</div>
<div class="exe3">VerNav fffffffff
</div>
<div class="content">Content
</div>
<div class="right">Right nav
</div>
</div>
</body>
</html>