-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (62 loc) · 2.06 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
59
60
61
62
<html>
<head>
<title>My Profile Page</title>
<meta charset="utf-8">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link href="https://fonts.googleapis.com/css2?family=Questrial&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<a id="menu1"></a>
<div class="container">
<div>
<ul id=menu>
<li><a href="#menu1"><h3>How I am ?</h3></a>
<li><a href="#menu2"><h3>Where do I go ?</h3></a>
<li><a href="#menu3"><h3>Talk to me ?</h3></a>
</ul>
</div>
<div class="card">
<h1>Hi,<br>I'm Ben</h1>
<br>
<img src="images/profile_pic_Ben.jpg" class="img-circle" width = 150px>
<br>
<p>
39 years old, married for 9 years already, father of 3,
I'm a rugby enthousiast that believes that everyone is
equally important to reach shared fulfilness and happiness.
</p>
</div>
<div class="card"><a id="menu2"></a>
<h2>My projects</h2>
<ul class="body-list">
<li><i class="fas fa-file-certificate"></i></li>
<li class="button">Become a Product Manager in the learning industry</li>
<li class="button">Launch my Sustainable Menu Generator</li>
<li class="button">Find an outter-city hidden spot</li>
</ul>
</div>
<div class="card"><a id="menu3"></a>
<h2>Follow me</h2>
<ul class="list_inline">
<li>
<a href="https://www.facebook.com">
<i class="fab fa-facebook"></i>
</a>
</li>
<li>
<a href="https://www.twitter.com">
<i class="fab fa-twitter"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com">
<i class="fab fa-linkedin-in"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>