-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfile0.html
More file actions
61 lines (56 loc) · 2.22 KB
/
file0.html
File metadata and controls
61 lines (56 loc) · 2.22 KB
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
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="stylesheet" href="file0.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>File0</title>
</head>
<body>
<!-- Bouton hamburger pour le menu mobile -->
<button class="menu-toggle">☰ Menu</button>
<!-- Menu de navigation -->
<nav>
<img src="anime.jpeg" height="110px" width="110px" alt="">
<ul class="menu">
<li><a href="acceuil.html">Accueil</a></li>
<li>
<!-- Ajout d'une classe pour cibler le lien "Département" -->
<a href="#" class="service-toggle">Départements ▼</a>
<ul class="submenu">
<li><a href="info.html"><em>Informatique</em></a></li>
<li><a href="maths.html"><em>Mathématiques</em></a></li>
<li><a href="pct.html"><em>PCT</em></a></li>
<li><a href="français.html"><em>Français</em></a></li>
<li><a href="anglais.html"><em>anglais</em></a></li>
<li><a href="histoire-geo.html"><em>histoire-geo</em></a></li>
<li><a href="eps.html"><em>education physique</em></a></li>
</ul>
</li>
<li>
<!-- Ajout d'une classe pour cibler le lien "Enseignements" -->
<a href="#" class="service-toggle">Enseignements ▼</a>
<ul class="submenu">
<li><a href="anglophone.html"><em>anglophone-section</em></a></li>
<li><a href="francophone.html"><em>section-Francophone</em></a></li>
</ul>
</li>
<li>
<!-- Ajout d'une classe pour cibler le lien "Services" -->
<a href="#" class="service-toggle">Hiérarchie ▼</a>
<ul class="submenu">
<li><a href="proviseur.html"><em>LE PROVISEUR</em></a></li>
<li><a href="vices proviseurs.html"><em>LES VICES PROVISEURS </em></a></li>
<li><a href="censeur.html"><em>Censeurs</em></a></li>
<li><a href="sg.html"><em>Surveillant généraux</em></a></li>
<li><a href="#"><em>SEO</em></a></li>
</ul>
</li>
<li><a href="clubs.html">Clubs</a></li>
<li><a href="album.html">Album photo</a></li>
<li><a href="annonces.html">Annonces</a></li>
</ul>
</nav>
<script src="file0.js"></script>
</body>
</html>