-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
44 lines (35 loc) · 1.27 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
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title> Social Links </title>
<link rel="stylesheet" type="text/css" href="styles.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=Inter:wght@100..900&display=swap" rel="stylesheet">
</head>
<body>
<div class="container">
<img class="pic" src="https://assets.codepen.io/11868974/avatar-jessica_1.jpeg" alt="face" />
<h1>Jessica Randall </h1>
<p class="loc">London, United Kingdom</p>
<p class="info">"Front-end developer and avid reader"</p>
<div class="button-1">
<a href="#"> <p class="one">Github </p></a>
</div>
<div class="button-2">
<a href="#"> <p class="two"> Frontend Mentor </p></a>
</div>
<div class="button-3">
<a href="#"> <p class="three">Linkedin</p> </a>
</div>
<div class="button-4">
<a href="#"> <p class="four">Twitter</p> </a>
</div>
<div class="button-5">
<a href="#"> <p class="five">Instagram </p></a>
</div>
</div> <!-- closes container -->
</body>
</html>