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
| <html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<style type="text/css">
<!--
.fond {
position: absolute ;
top: 0 ;
left: 0 ;
height: 100% ;
width: 100% ;
border: solid black 0px
}
.menugauche {
position: absolute ;
width: 90%;
height: 47%;
margin-top: auto;
margin-right: auto;
margin-bottom: auto;
margin-left: 10%;
}
.menudroite {
position: absolute ;
width: 30%;
height: 47%;
margin-top: auto;
margin-right: auto;
margin-bottom: auto;
margin-left: 70%;
}
.contenu {
position: relative ;
top: 53%;
}
.compteur {
position: absolute ;
width: 0%;
height: 0%;
margin-top: -10%;
margin-right: auto;
margin-bottom: auto;
margin-left: 46%;
}
-->
<!--[if IE]>
html, body {height:100%; width: 100%; margin:0; padding:0;}
<![endif]-->
</style>
</head>
<body>
<img class="fond" src="Index/Accueil.gif" alt="">
<div class="fond">
<div class="contenu">
<div class="menugauche"></div>
<div class="menudroite"></div>
<div class="compteur"><? include("Compteur/compteur.inc"); ?></div>
</div>
</div>
</body>
</html> |