-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
48 lines (42 loc) · 1.45 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>My landing page</title>
<link rel="shortcut icon" href="data:image/x-icon;" type="image/x-icon">
<!-- We need this line below for responsiveness! -->
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<!-- code a Hero / Banner section -->
<div class="banner">
<p><h1>Prenez de la hauteur </h1></p>
<p><h2>Explorez la liberté</h2></p>
<p><a class="btn-reservation" href="#">Réservez dès maintenant votre séjour</a></p>
</div>
</div>
<h3 class="text-center">Comment ça marche </h3>
<div class="container">
<div id = "valeurs">Découvrez nos valeurs<br>
<p><img src="images/mountain.png" width = 30px></p>
</div>
<div> Choisissez votre destination <br>
<p><img id= "destination" src ="images/destination.png" width = 30px></p>
</div>
<div>Choisissez votre activité <br>
<p><img id ="activité" src ="images/alpine.png" width = 30px></p>
</div>
</div>
<!-- code a "How it works" section -->
</body>
<div class="footer">
<div class="footer-links">
<a href="#"><i class="fab fa-instagram"></i></a>
<a href="#"><i class="fab fa-facebook"></i></a>
<a href="#"><i class="fab fa-twitter"></i></a>
<div class="footer-copyright">
This footer is made with <i class="fas fa-heart"></i> at Le Wagon
</div>
</div>
</html>