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
|
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Document sans nom</title>
<style type="text/css">
* {margin:0;padding:0;}
body {
background-color: #000;
}
#page>div {
width: 100%;
}
#header {
height: 100px;
background-color: magenta;
}
#container {
position: relative;
}
#content {
position: absolute;
top: 100%;
background-color: pink;
width: 100%;
}
#menu {
height:150px;
background-color: red;
line-height: 150px;
text-align: center;
}
</style>
</head>
<body>
<div id="page">
<div id="header"><h1>Header site</h1></div>
<div id="container">
<div id="content">
<h2>Titre page</h2>
<p>Lorem ipsum dolor sit amet...</p>
</div>
<div id="menu"><p>Ici il y a un menu avec plein d'images.</p></div>
</div>
</div>
</body>
</html> |
Partager