-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
41 lines (34 loc) · 1.43 KB
/
Copy pathindex.html
File metadata and controls
41 lines (34 loc) · 1.43 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
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="images/favicon-32x32.png">
<title>Frontend Mentor | Social Links Profile #3</title>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<div class="social-card">
<div class="profile">
<img src="images/avatar-jessica.jpeg" alt="Jessica Randall">
<h2>Jessica Randall</h2>
<p class="address">London, United Kingdom</p>
</div>
<div class="social-links">
<p>"Front-end developer and avid reader."</p>
<ul>
<li><a href="https://github.com/AdityaDwiNugroho">Github</a></li>
<li><a href="https://www.frontendmentor.io/profile/AdityaDwiNugroho">Frontend Mentor</a></li>
<li><a href="#">LinkedIn</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="https://www.instagram.com/allen.adityadn/">Instagram</a></li>
</ul>
</div>
</div>
<div class="attribution" role="note">
Challenge by
<a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by
<a href="https://www.frontendmentor.io/profile/AdityaDwiNugroho">Aditya Dwi Nugroho</a>.
</div>
</body>
</html>