-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (34 loc) · 1.49 KB
/
index.html
File metadata and controls
34 lines (34 loc) · 1.49 KB
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
<!DOCTYPE html>
<html>
<head>
<title>My profile</title>
<link rel="stylesheet" href="style.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v6.1.2/css/all.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=Lekton&display=swap" rel="stylesheet">
<meta name="description" content="Personal professional profile">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="container">
<div class="card">
<h1>Hello, I'm Hugo 🦾😎</h1>
<img class="profile-img" src="./images/IMG_1076_Original.JPG" width="170px" alt="My profile picture">
<h2>Full-Stack Web Developer 💻</h2>
<h3>I can hack now 😜</h3>
<p>I'm from Brazil and like most brazilians, I love football. <br>I'm a Blue belt in Brazilian Jiu-jitsu. <br><br>I learnt to code at<a href="https://www.lewagon.com/">Le Wagon.</a></p>
</div>
<div class="card">
<h2>
Follow me
</h2>
<ul class="social-icons">
<a href="https://www.linkedin.com/in/hugo-b-248b79115/"> <i class="fa-brands fa-linkedin fa-rotate-90 fa-lg"></i> </a>
<a href="https://github.com/hugoborgesuk"> <i class="fa-brands fa-square-github fa-rotate-180 fa-lg"></i> </a>
</ul>
</div>
</div>
</body>
</html>