-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
56 lines (50 loc) · 2.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<!-- Meta tags = properties of the document not shown on the page -->
<meta charset="UTF-8">
<title>Le Wagon Lisbon</title>
<meta name="description" content="Simple landing page built during the workshop ">
<meta name="author" content="Le Wagon Lisbon Team">
<!-- Favicon -->
<link rel="icon" href="images/logo.png">
<!-- Change these Google fonts with your own choice from fonts.google.com -->
<link href="https://fonts.googleapis.com/css?family=Chivo:300,700|Overpass:400,700&display=swap" rel="stylesheet">
<!-- Link to our CSS -->
<link rel="stylesheet" href="style.css">
</head>
<body>
<!-- Banner -->
<div class="banner">
<h1>Welcome to Le Wagon Lisbon! 🇵🇹</h1>
<p class="subtitle">We teach you the skills and entrepreneurial mindset you need to thrive, now and in the future</p>
<a href="https://www.lewagon.com/apply/lisbon" class="btn-red">Apply now</a>
</div>
<!-- Cards section -->
<div class="container">
<h2>Discover our courses:</h3>
<div class="cards">
<div class="card-white">
<img src="images/lisbon1.png" />
<h4>Full-time Web Development</h4>
<p>From the database to the user interface, learn to code your own web applications from scratch and become a full-stack web developer.</p>
</div>
<div class="card-white">
<img src="images/lisbon2.png" />
<h4>Part-time Web Development</h4>
<p>In 24 weeks, part-time, learn all the skills of a software developer and code your own web applications to change your career.</p>
</div>
<div class="card-white">
<img src="images/lisbon3.png" />
<h4>Data Science Bootcamp</h4>
<p>From Python to advanced Machine Learning models, get all the skills to join a data science team and deploy your algorithms.</p>
</div>
</div>
</div>
<!-- Footer -->
<div id="footer">
<p>Website made with ❤ at Le Wagon</p>
<p><a href="https://github.com/lewagonlisbon/landing-page" class="github-link">See on GitHub</a></p>
</div>
</body>
</html>