-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (39 loc) · 1.16 KB
/
index.html
File metadata and controls
44 lines (39 loc) · 1.16 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
42
43
44
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="Social link challenge" />
<meta name="author" content="James" />
<link rel="stylesheet" href="style.css" />
<link
rel="shortcut icon"
href="img/favicon-32x32.png"
type="image/x-icon"
/>
<title>Frontend Mentor | Social links profile</title>
</head>
<body>
<main>
<div class="wrapper">
<img
class="profile-picture"
src="/img/avatar-jessica.jpeg"
alt="profile-picture"
/>
</div>
<h1>Jessica Randall</h1>
<h2>London, United Kingdom</h2>
<p>"Front-end developer and avid reader."</p>
<div class="links">
<a class="social-link" href="https://www.github.com" target="_blank"
>Github</a
>
<a class="social-link" href="#">Frontend Mentor</a>
<a class="social-link" href="#">Linkedin</a>
<a class="social-link" href="#">Twitter</a>
<a class="social-link" href="#">Instagram</a>
</div>
</main>
</body>
</html>