1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96
| <!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="fr" lang="fr">
<head>
<title>le monde perdu</title>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<style type="text/css">
body {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: 0.8em;
margin: 0;
padding: 0;
}
#conteneur {
position: relative;
width: 700px;
}
#header {
position: absolute;
width: 700px;
height: 130px;
background-image:url(header1.gif);
top: 0px;
left: 8px;
}
#centre {
position: absolute;
background-image:url(sirene.gif);
background-repeat: repeat-x;
overflow: auto;
width: 400px;
height:400px;
top:130px;/*modification */
left: 158px;
}
#gauche {
position: absolute;
width: 150px;
height: 400px;
background-image:url(mer.gif);
top: 130px;
left: 8px;
}
#droite {
position: absolute;
width: 150px;
height: 400px;
background-image:url(merd.gif);
top: 130px;
left: 558px;
}
#pied {
position: absolute;
height: 30px;
width: 700px;
background-image:url(merbas.gif);
top: 530px;
left: 8px;
}
</style>
</head>
<body >
<div id="conteneur">
<div id="header"><?php require'banniere.php'; ?>
</div>
<div id="gauche">
<h3>Sommaire</h3>
<li><a href="#">Menu 1</a></li>
<li><a href="#">Menu 2</a></li>
<li><a href="#">Menu 3</a></li>
<li><a href="#">Menu 4</a></li>
</ul>
</div>
<div id="droite">
<p>droite</p>
</div>
<div id="centre">
</div>
<div id="pied">pied de page</div>
</div>
</body>
</html> |
Partager