-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 1.35 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
<!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="style.css" />
<title>Frontend Mentor | Social links profile</title>
</head>
<body>
<article class="user-profile">
<figure class="user-profile__figure">
<img class="user-profile__image" src="./assets/images/avatar-jessica.jpeg" alt="avatar" />
</figure>
<h1 class="user-profile__name">Jessica Randall</h1>
<p class="user-profile__location">London, United Kingdom</p>
<h2 class="user-profile__bio">"Front-end developer and avid reader."</h2>
<section class="user-profile__links">
<a class="user-profile__link" href="https://github.com" target="_blank">GitHub</a>
<a class="user-profile__link" href="https://frontendmentor.io" target="_blank">Frontend Mentor</a>
<a class="user-profile__link" href="https://www.linkedin.com" target="_blank">LinkedIn</a>
<a class="user-profile__link" href="https://twitter.com" target="_blank">Twitter</a>
<a class="user-profile__link" href="https://www.instagram.com" target="_blank">Instagram</a>
</section>
</article>
</body>
</html>