-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.html
45 lines (40 loc) · 1.36 KB
/
footer.html
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
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ÉduConseils - Footer</title>
<style>
body {
font-family: Arial, sans-serif;
background-color: black;
color: white;
text-align: center;
padding: 35px;
}
.link-footer {
text-decoration: none;
color: white;
transition: color 0.2s;
}
.link-footer:hover {
color: #2c75ff;
}
.footer-text {
font-size: 14px;
color: #777;
user-select: none;
}
</style>
</head>
<body>
<!-- Liens de navigation -->
<span style="padding-right: 1%"><a href="index.html" class="link-footer" target="_parent">Accueil</a></span>
<span style="padding-right: 1%">|</span>
<span style="padding-right: 1%"><a href="workinprogress.html" class="link-footer" target="_parent">A propos</a></span>
<span style="padding-right: 1%">|</span>
<span style="padding-right: 1%"><a href="workinprogress.html" class="link-footer" target="_parent">Contactez nous</a></span>
<!-- Texte de pied de page -->
<p class="footer-text">© 2024 ÉduConseils. All right reserved</p>
</body>
</html>