-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (49 loc) · 1.6 KB
/
index.html
File metadata and controls
49 lines (49 loc) · 1.6 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
<!DOCTYPE html>
<html lang="fr">
<head>
<link rel="icon" type="image/png" href="#">
<meta charset="UTF-8">
<meta name="description" content="test avec JS">
<title>Luxdrive</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<header>
<div class="logo-entreprise">
<a href="#" title="Home">
<img src="./images/logo/logo.png" alt="Luxdrive L'expert en voiture de luxe.">
</a>
</div>
<div class="title">
<p>Luxdrive</p>
<p>Une expérience de luxe pour un jour unique</p>
</div>
<nav>
<ul>
<li>
<a href="./index.html" title="Accueil">Accueil</a>
</li>
<li>
<a href="./catalogue.html" title="Catalogue">Catalogue</a>
</li>
</ul>
</nav>
</header>
<main>
<div class="titre-principal">
<div id="container-banner"></div>
</div>
<div class="stats-container">
<div class="stats"></div>
</div>
<div class="testimonial-container">
<div class="testimonials"></div>
</div>
</main>
<footer>
<div class="container-footer"></div>
</footer>
<script src="./js/script.js"></script>
</body>
</html>