-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathformules.html
More file actions
87 lines (69 loc) · 2.92 KB
/
Copy pathformules.html
File metadata and controls
87 lines (69 loc) · 2.92 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>SpaceTravel</title>
<link rel="icon" type="image/png" href="assets/favicon.png">
<meta name="description" content="Découvrez notre site sur les voyages Spatiaux !">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com"> <!-- Liens pour la police d'écriture custom -->
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> <!-- Liens pour la police d'écriture custom -->
<link href="https://fonts.googleapis.com/css2?family=Geo:ital@0;1&display=swap" rel="stylesheet"> <!-- Liens pour la police d'écriture custom -->
</head>
<body>
<nav class="menu">
<ul>
<li><a href="index.html">Accueil</a></li>
<li><a href="catalogue.html">Catalogue</a></li>
<li><a href="formules.html">Tarifs</a></li>
<li><a href="propos.html">A propos</a></li>
<li><a href="reclamations.html">Réclamations</a></li>
<li><a class="btn_menu" href="#"><img src="assets/theme_icon.png" alt="icone du bouton de changement de theme"></a></li>
</ul>
</nav>
<div class="carre">
<div class="formule">
<h2>Formule Economique</h2>
<p class="prix">250 000 €</p>
<p class="desc">Vol spatial – 2 heures</p>
<button class="btn">Réserver</button>
</div>
<div class="formule">
<h2>Formule Confort</h2>
<p class="prix">1 200 000 €</p>
<p class="desc">Voyage vers la Lune – 3 jours</p>
<button class="btn">Réserver</button>
</div>
<div class="formule">
<h2>Formule Premium</h2>
<p class="prix">8 500 000 €</p>
<p class="desc">Voyage dans l'univers – 7 jours</p>
<button class="btn">Réserver</button>
</div>
</div>
<div id="reservation-modal" class="reservation">
<div class="rectangle">
<h2>Réserver votre voyage</h2>
<label for="date">Choisissez une date :</label>
<input type="date" id="date">
<button class="btn confirmer">Confirmer</button>
</div>
</div>
<script>
var boutons = document.querySelectorAll(".btn");
var modal = document.getElementById("reservation-modal");
const btnMenu = document.querySelector('.btn_menu');
const body = document.body;
btnMenu.addEventListener('click', (e) => {
e.preventDefault(); // éviter le scroll vers le haut
body.classList.toggle('alt-theme'); // bascule le thème clair
});
for (var i = 0; i < boutons.length; i++) {
boutons[i].onclick = function () {
modal.style.display = "flex";
};
}
</script>
</body>
</html>