Bonjour,
Je créer un site internet... enfin j'essaie , enfin je tatonne![]()
Pour plus de facilité mon menu est en php afin qu'il se modifier sur toutes les pages.
Actuellement mon code est le suivant :
J'aimerais pouvoir créer des sous menu qui du coup en cliquant dessus déroule un menu comment faire tout en gardant le style de mon menu ?
Code : Sélectionner tout - Visualiser dans une fenêtre à part
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 <div id="pageNav"> <div id="sectionLinks"> <p align="center"><strong>Le bureau </strong></p> <p><a href="bureau.php" target="_self">Le bureau </a></p> <p align="center"><strong>Nos actions </strong></p> <p> <a href="1.php" target="_self">Les véhicules</a> <a href="2.php" target="_self">La société </a> <a href="3.php" target="_self">Les partenaires </a> <a href="4.php" target="_self">Nos produits </a> <a href="5.php" target="_self">La boutique</a></p> <p align="center"><strong>Contact </strong></p> <p> <a href="Nous_rejoindre.php" target="_self">Nous rejoindre </a> <a href="Nous_contacter.php" target="_self">Nous contacter </a> </p> <p align="center"><strong>Médiathèque </strong> </p> <p align="left"> <a href="phototeque.php" target="_self">Photothèque </a> <a href="videotheque.php" target="_self">Vidéothèque</a> </p> <p> </p> </div> </div>
Merci![]()
Partager