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
| <html><head><style type="text/css">
ul /* on masque */
{
display: none;
}
.sous_menu:hover ul/*on affiche le contenu du menu quand on le survol*/
{
display: block;
}
</style>
</head>
<body>
<div id="menu">
<div class="sous_menu">
<span class="menu">Viniles </span><br/>
<ul class="test">
<a href="acceuil.php?choix=metal">Métal</a><br/>
<a href="acceuil.php?choix=rock">Rock</a><br/>
<a href="acceuil.php?choix=rockabilly">Rockabilly</a><br/>
<a href="acceuil.php?choix=rock_roll">Rock'n Roll</a><br/>
<a href="acceuil.php?choix=variete_francaise">Variété Francaise</a><br/>
</ul>
</div>
<div class="sous_menu">
<span class="menu">DVD </span><br/>
<ul>
<a href="acceuil.php?select=action">Action</a><br/>
<a href="acceuil.php?select=fantastique">Fantastique</a><br/>
<a href="acceuil.php?select=horreur">Horreur</a><br/>
</ul>
</div>
<div class="sous_menu">
<span class="menu">Jeux PC </span><br/>
<ul>
<a href="acceuil.php?categ=rpg">RPG</a><br/>
<a href="acceuil.php?categ=strategie">Strategie</a><br/>
<a href="acceuil.php?categ=aventure">Aventure</a><br/>
</ul>
</div>
</div>
</body>
</html> |