-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
58 lines (58 loc) · 1.96 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
<!DOCTYPE html>
<html>
<head>
<title>Fer's profile</title>
<meta name="description" content="This is Fernando's profile">
<meta charset="utf-8">
<script src="https://kit.fontawesome.com/3aeff17969.js" crossorigin="anonymous"></script>
<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=Lora:wght@400;700&family=Roboto:wght@300;900&display=swap" rel="stylesheet">
<link rel="stylesheet" href="style.css" type="text/css">
</head>
<body>
<div class="container">
<div id="introduction" class="card-white">
<h1>Hello, I'm Fer 🤯</h1>
<img class="img-circle" width="150px" src="images/fer_profile_picture.jpg" alt="Fer's profile picture">
<p>
I love web-development, photography and food 🍜. I learn, I code and I teach 🧑🏫.
</p>
<a class="btn-purple" href="#">Discover Le Wagon</a>
</div>
<div class="card-white">
<h2>Web development💻️</h2>
<p>
I am passionate about building solutions with <strong>Ruby On Rails</strong>
</p>
</div>
<div class="card-white">
<h2>Photography 📷️</h2>
<p>
I am passionate about <strong>images</strong>.
</p>
</div>
<div class="card-white">
<h2>Food 🍝</h2>
<p>
I am passionate about <strong>flavours</strong>.
</p>
</div>
<div class="card-white">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/fesilvajacquier">
<i class="fab fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.linkedin.com/in/fesilvajacquier">
<i class="fab fa-linkedin"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>