-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
50 lines (47 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="style.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;1,400&family=Roboto:wght@100;300;400&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>My Profile Page</title>
</head>
<body>
<div class="container">
<div class="white-card">
<h1>Hello, I'm Valentine 🥳</h1>
<img class='img-circle' src="images/photo.jpeg" alt="Profile picture">
<h2>Valentine Bodart, 10x programmer </h2>
<p>After 7 years working in corporate finance 🏦, I decided to take a 6 months break during which I travelled with my family across Europe in a van 🚐 - a bit cliché, I know. Perfect occasion though to also finally enroll at Le Wagon 💻 to give myself the chance to learn new skills and new game rules for my future professional life.</p>
<a class="btn-pink" href="https://www.lewagon.com" target="_blank">
Let's meet !
</a>
</div>
<div class="white-card">
<ul class="list-inline">
<li>
<a class="social-network" href="https://www.facebook.com/valentine.bt/">
<i class="fab fa-facebook-f"></i>
</a>
</li>
<li>
<a class="social-network" href="https://www.linkedin.com/in/valentine-bodart-frm-26815249/">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
<li>
<a class="social-network" href="https://twitter.com/BtValentine">
<i class="fab fa-twitter"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>