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
|
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<title>test</title>
<style type="text/css">
<!--
.bandeauhaut {background-color:gray; text-align:center}
.menu {float:left;background-color:red;width:25%}
.news {background-color:yellow;text-align:center;float:left;width:50%}
.droite {float:right;background-color:green;width:24%}
-->
</style>
</head>
<body>
<div class="bandeauhaut">
logo du site
</div>
<div class="menu">menu</div>
<div class="news">les news</div>
<div class="droite">top liste</div>
</body>
</html> |