-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
38 lines (38 loc) · 1.3 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link href="https://fonts.googleapis.com/css?family=Open+Sans|Roboto:300&display=swap" rel="stylesheet">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.6.3/css/all.css">
<link rel="stylesheet" href="style.css">
<title>Fer's profile</title>
</head>
<body>
<section class="container">
<article class="card">
<h1>Fernando</h1>
<img class="img-circle" src="images/fer-pic.jpg" alt="Profile pic">
<p>On the path to become a programmer</p>
<p>Sometimes I take cool pics</p>
<p>I live for 🍕</p>
<a href="https://efectoamalia.bandcamp.com/" target="_blank" title="oh... it's Efecto Amalia 🤘">
<button class="btn-green">
Listen to the band on my shirt
</button>
</a>
</article>
<article class="card">
<h2>Follow me on...</h2>
<ul>
<li>
<a href="https://github.com/fesilvajacquier" target="_blank">
<i class="fab fa-github"></i>
</a>
</li>
</ul>
</article>
</section>
</html>
</body>