hfoppen
Terugkerende gebruiker
- Lid geworden
- 15 nov 2000
- Berichten
- 1.058
Beste mensen,
ik ben bezig om de basis te maken voor een website. Krijg dit echter niet goed voor elkaar. Onderstaand de huidige code.
De left & right, moeten naast topheader/menu/promobox/content komen. Footer1 & Footer2 is incl. deze beide 'balken'.
Schets:
Ik krijg die links & rechts er niet goed bij!! (online pagina: http://www.foppen.nu/helpmij/index-helpmij.html)
ik ben bezig om de basis te maken voor een website. Krijg dit echter niet goed voor elkaar. Onderstaand de huidige code.
De left & right, moeten naast topheader/menu/promobox/content komen. Footer1 & Footer2 is incl. deze beide 'balken'.
Schets:

Ik krijg die links & rechts er niet goed bij!! (online pagina: http://www.foppen.nu/helpmij/index-helpmij.html)
HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<title>..:: Webpagina ::..</title>
<style type="text/css">
#html,body{
width:100%;
margin:0px;
padding:0px;
background: #f3f2f0;
font-family: Arial;
font-size: 11px;
}
#container{
width:1020px;
height:auto;
margin:0px auto;
}
#left {
float: left;
width: 30px;
height: auto;
background: #c00000;
}
#right {
float: left;
width: 30px;
height: auto;
background: #c00000;
}
/* Headers
Topheader voor logo
Menu voor menu
Promobox voor slider
*/
#topheader{
float:left;
width:960px;
height:87px;
}
#menu{
float:left;
text-align: right;
width:960px;
height:15px;
word-spacing: 20px;
}
#promobox{
float:left;
width:960px;
height:249px;
}
/* Content-gedeelte */
#contentcontainer{
float:left;
height:400px;
width:960px;
}
#content{
background: #ffffff;
float:left;
width:960px;
height:400px;
}
#contentleft{
background: #ffffff;
float:left;
width:570px;
height:400px;
}
#contentright{
background: #ffffff;
float:left;
width:190px;
height:400px;
}
/* Footers; 2 stuks. Footer1 is voor (uitgebreid menu), footer2 is voor copyright */
#footer1{
float:left;
width:988px;
height:150px;
background-color:#496685;
color: #FFF;
font-size:11px;
font-weight: bold;
font-family: Arial;
}
#footer2{
float:left;
width:988px;
height:22px;
background-color:#203c5c;
color: #FFF;
font-size:10px;
font-weight: bold;
font-family: Arial;
text-align: center;
}
H1 {
font-family: Arial;
font-size:14px;
font-weight: bold;
color: #1d3c5b;
}
H2 {
font-family: Arial;
font-size:12px;
font-weight: bold;
color: #1d3c5b;
}
H3 {
font-family: Arial;
font-size:11px;
font-weight: bold;
color: #1d3c5b;
}
</style>
</head>
<body>
<div id="container">
<div id="left">Left</div>
<div id="topheader">
Topheader/logo
</div>
<div id="menu">
Home menu2 menu3 menu4 menu5
</div>
<div id="promobox">
Promobox
</div>
<div id="contentcontainer">
<div id="content">
<div id="contentleft"><h1>Links</h1><h2>Links H2</h2><h3>Links H3</h3></div>
<div id="contentright">Rechts</div>
</div>
<div id="right">Right</div>
<div id="footer1">
Footer1
</div>
<div id="footer2">
© Website
</div>
</div>
</div>
</body>
</html>
Laatst bewerkt: