-
Notifications
You must be signed in to change notification settings - Fork 0
/
Hygiene-corps.html
61 lines (56 loc) · 2.39 KB
/
Hygiene-corps.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="fr">
<head>
<meta name="color-scheme" content="dark light">
<meta name="theme-color" content="#000000">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>ChouSbox - Hygiène 🚿</title>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="cursor cursor--large"></div>
<div class="cursor cursor--small"></div>
<nav class="navigation">
<div class="toggleMenu" aria-label="Toggle Menu"></div>
<ul>
<li><a href="index.html" data-text="Accueil">Accueil</a></li>
<li><a href="informatique.html" data-text="Informatique">Informatique</a></li>
<li><a href="hygiene.html" data-text="Hygiène">Hygiène</a></li>
<li><a href="ressources.html" data-text="Ressources">Ressources</a></li>
</ul>
</nav>
<section class="welcome-section">
<h1 class="glowing-text">Hygiène Corporelle</h1>
<p class="typing-text">Conseils et astuces pour prendre soin de soi</p>
</section>
<div class="categories">
<a href="soins-cheveux.html" class="category-card">
<div class="category-icon">💆</div>
<h3>Soins des Cheveux</h3>
<p>Comment prendre soin de ses cheveux</p>
</a>
<a href="soins-peau.html" class="category-card">
<div class="category-icon">🧴</div>
<h3>Soins de la Peau</h3>
<p>Routines et conseils pour une peau saine</p>
</a>
<a href="hygiene-bucco-dentaire.html" class="category-card">
<div class="category-icon">🦷</div>
<h3>Hygiène Bucco-dentaire</h3>
<p>Maintenir une bonne santé dentaire</p>
</a>
</div>
<div class="theme-switch">
<input type="checkbox" id="theme-toggle">
<label for="theme-toggle" class="theme-label">
<i class="moon">🌙</i>
<i class="sun">☀️</i>
</label>
</div>
<script src="script.js" defer></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/gsap/3.12.5/gsap.min.js"></script>
</body>
</html>