-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
54 lines (54 loc) · 2.09 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
49
50
51
52
53
54
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>FIVE GUY</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="hero-border"></div>
<div class="hero">
<div class="container">
<h1>BIENVENUE CHEZ FIVE GUYS</h1>
<a href="https://fiveguys.fr/" class="btn-white">COMMANDER MAINTENANT</a>
</div>
<img src="images/burger.png" alt="burger" class="hero-burger-top">
<img src="images/burger.png" alt="burger" class="hero-burger-bottom">
</div>
<div class="hero-border"></div>
<!-- code a "How it works" section -->
<div class="container">
<h2 id="title">Pourquoi venir dépenser tout votre argent chez nous!</h2>
<div class="cards">
<div class="card">
<img src="https://fiveguys.fr/app/uploads/sites/5/fly-images/458/Burger-03-1-1-570x510-c.jpg" alt="burger">
<h2>Nos burgers sont les meilleurs</h2>
<p>Préparé avec amour</p>
</div>
<div class="card">
<img src="https://fiveguys.fr/app/uploads/sites/5/fly-images/460/Jalapenos-Cut-1-570x510-c.jpg" alt="légume">
<h2>Des bons légumes</h2>
<p>Préparé pour Mic</p>
</div>
<div class="card">
<img src="https://fiveguys.fr/app/uploads/sites/5/fly-images/480/five-guys-full-menu-570x510-c.jpg" alt="burger">
<h2>Un repas copieux</h2>
<p>Vous en avez pour votre argent</p>
</div>
</div>
</div>
<!-- code a footer -->
<footer>
<ul>
<li><a href="https://github.com/NathanBerthier"><i class="fab fa-github"></i></a></li>
<li><a href="https://www.linkedin.com/in/nathan-berthier-816721164/"><i class="fab fa-linkedin-in"></i></a></li>
<li><a href="https://twitter.com/nathan_berthier"><i class="fab fa-twitter"></i></a></li>
</ul>
<h2>This website was coded at Le Wagon. by Nathan Berthier</h2>
</footer>
</body>
</html>