-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (30 loc) · 912 Bytes
/
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
<!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"
/>
<title>Frontend Mentor | Social links profile</title>
<link rel="stylesheet" href="styles.css" />
</head>
<body>
<main class="container">
<article class="card">
<img src="assets/images/avatar-jessica.jpeg" alt="Avatar" />
<p id="name">Jessica Randall</p>
<p id="location">London, United Kingdom</p>
<p id="description">"Front-end developer and avid reader".</p>
<button>GitHub</button>
<button>Frontend Mentor</button>
<button>Linkedin</button>
<button>Twitter</button>
<button>Instagram</button>
</article>
</main>
</body>
</html>