-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (43 loc) · 1.24 KB
/
index.html
File metadata and controls
58 lines (43 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Le Wagon - Web Development Sprint</title>
<!-- Change these Google fonts with your own choice -->
<link href="https://fonts.googleapis.com/css?family=Chivo:700|Overpass:400,700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Banner section -->
<div class= "banner">
<h1> <span class="typewriter"> Change your life, learn to code </span> </h1>
<p>Le Wagon brings technical skills to creative people</p>
<a href="https://www.lewagon.com/" class= "btn-blue">Apply now</a>
</div>
<!-- Cards section -->
<div class="container">
<h2>Discover our campuses</h2>
<div class="cards">
<div class="card-white">
<img src="images/shanghai.jpg" alt="Shanghai">
<h3>Shanghai</h3>
<p>Learn to code with us in Shanghai</p>
</div>
<div class="card-white">
<img src="images/london.jpg" alt="London">
<h3>London</h3>
<p>Learn to code with us in London</p>
</div>
<div class="card-white">
<img src="images/paris.jpg" alt="Paris">
<h3>Paris</h3>
<p>Learn to code with us in Paris</p>
</div>
</div>
</div>
<!-- Footer section -->
<div class="footer">
<p> Website made with ❤️ at Le Wagon </p>
</div>
</body>
</html>