-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
54 lines (53 loc) · 1.77 KB
/
index.html
File metadata and controls
54 lines (53 loc) · 1.77 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<script src="https://kit.fontawesome.com/2ef849009c.js" crossorigin="anonymous"></script>
<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">
<div class="container">
<h1>Le Wagon brings tech skills to creative people!</h1>
<h3>Change your life and learn to code at one of our campuses around the world.</h3>
<a href="#" class="btn-primary">Apply now!</a>
</div>
</div>
<!-- code a "How it works" section -->
<div class="container">
<h2 class="title">How it works</h2>
<div class="cards">
<div class="card">
<img src="images/apply.svg" alt="apply image">
<h3>Apply</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
<div class="card">
<img src="images/learn.svg" alt="apply image">
<h3>Apply</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
<div class="card">
<img src="images/product.svg" alt="apply image">
<h3>Apply</h3>
<p>Lorem ipsum dolor sit amet.</p>
</div>
</div>
</div>
<!-- code a footer -->
<div class="footer">
<div class="social-media">
<a href=""><i class="fa-brands fa-instagram"></i></a>
<a href=""><i class="fa-brands fa-github"></i></a>
<a href=""><i class="fa-brands fa-twitter"></i></a>
<a href=""><i class="fa-brands fa-facebook-messenger"></i></a>
<p>This website was coded with ❤️ at Le Wagon.</p>
</div>
</div>
</body>
</html>