-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (32 loc) · 1.25 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png">
<link rel="stylesheet" href="./assets/style.css">
<link rel="preconnect" href="https://rsms.me/">
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<title>Frontend Mentor | Social links profile</title>
</head>
<body>
<main>
<div class="info">
<img src="./assets/images/pfp2.jpg" alt="Profile Picture">
<p class="profile name"> Paulo Vítor Araújo</p>
<p class="profile place"> Rio de Janeiro, Brazil</p>
<p class="profile about"> "Tech guy and manga enthusiast" </p>
<button> GitHub </button>
<button> Frontend Mentor </button>
<button> LinkedIn </button>
<button> Twitter </button>
<button> Instagram </button>
</div>
</main>
<!--<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io/challenges/social-links-profile-UG32l9m6dQ" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/araujovitorpaulo">Paulo Vítor Araújo</a>.
</div>-->
<script src="./assets/script.js"></script>
</body>
</html>