-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (52 loc) · 1.79 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
55
56
57
58
<!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" style="background-image: url('images/background.png');">
<div class="container">
<h1>Le Wagon brings tech skills to creative people!</h1>
<p>Change your life and learn to code at one of our campuses around the world.</p>
<a href="#" class="btn-green">Apply Now!</a>
</div>
</div>
<div class="container">
<h2>How it works</h2>
<div class="cards">
<div class="card">
<img src="images/apply.svg" alt="">
<h3>Apply</h3>
<p>First apply to one of our campuses around the world.</p>
</div>
<div class="card">
<img src="images/learn.svg" alt="">
<h3>Build products</h3>
<p>Finally you will be able to bring your ideas to life.</p>
</div>
<div class="card">
<img src="images/product.svg" alt="">
<h3>Build products</h3>
<p>Finally you will be able to bring your ideas to life.</p>
</div>
</div>
</div>
<!-- code a "How it works" section -->
<div class="footer">
<div class="links">
<a href="#"><i class="fab fa-fw fa-facebook-f"></i></a>
<a href="#"><i class="fab fa-fw fa-github"></i></a>
<a href="#"><i class="fab fa-fw fa-twitter"></i></a>
<a href="#"><i class="fab fa-fw fa-instagram"></i></a>
<p>This website was coded with <i class="fas fa-heart"></i> at Le Wagon.</p>
</div>
</div>
<!-- code a footer -->
</body>
</html>