-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (51 loc) · 1.67 KB
/
index.html
File metadata and controls
56 lines (51 loc) · 1.67 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
<!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">
<div class="container">
<h1>Keep learning, this is my life challenge </h1>
<p>Joining bootcamp to change my life and this is my journey</p>
<a class="btn-primary" href="#">Check profile!</a>
</div>
</div>
<!-- code a "How it works" section -->
<div class="container">
<h2 class="text-center">Some activities</h2>
<div class="cards">
<div class="card">
<img src="css/images/world.png" alt="">
<h4>Travel</h4>
<p>I visited 13 countries until now...</p>
</div>
<div class="card">
<img src="css/images/conversation.png" alt="">
<h4>Languages</h4>
<p>Japanese(Native) / English(Working proficiency ) / Spanish(Hobbies) </p>
</div>
<div class="card">
<img src="css/images/desktop.png" alt="">
<h4>Bolg</h4>
<p>The stories at Le wagon...</p>
</div>
</div>
</div>
<!-- code a footer -->
<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-instagram"></i></a>
<p>This website was coded with my lovely teacher's from Le Wagon. <i class="fas fa-heart"></i></p>
</div>
</div>
</body>
</html>