-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (49 loc) · 1.85 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Eduardo´s Profile</title>
<meta name="description" content="This is Eduardo´s profile">
<meta charset="utf-8">
<script src="https://kit.fontawesome.com/e9f45e351e.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="style.css" type="text/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=Roboto&display=swap" rel="stylesheet">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="white-card">
<h1>Eduardo Aguilar</h1>
<img class="img-circle" src="images/foto_perfil.jpeg" width="100px" alt="profile picture">
<p>
I like design and architecture, i am learning web development 👨🏽💻
</p>
<a class="btn-black" href="https://www.lewagon.com" target="_blank">Discover Le Wagon</a>
</div>
<div class="white-card">
<h2>Running</h2>
<p>I am passionate about running around the cities 🏃🏽♂️</p>
</div>
<div class="white-card">
<h2>Photography</h2>
<p>I am passionate about images of urban life 📸</p>
</div>
<div class="white-card">
<h2>Follow me</h2>
<ul class="list-inline">
<li>
<a href="https://github.com/SergioAps" target="_blank">
<i class="fa-brands fa-github-square"></i>
</a>
</li>
<li>
<a href="https://www.instagram.com/la_lolino/" target="_blank">
<i class="fa-brands fa-instagram-square"></i>
</a>
</li>
</ul>
</div>
</div>
</body>
</html>