-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 1.01 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Social links profile</title>
</head>
<body>
<article class="card">
<img src="./assets/images/avatar-jessica.jpeg" alt="a female picture" class="card__picture">
<h2 class="card__name">Jessica Randall</h3>
<p class="card__address">London, United Kingdom</p>
<p class="card__description">"Front-end developer and avid reader."</p>
<div class="card__buttons">
<button class="card__button">GitHub</button>
<button class="card__button">Frontend Mentor</button>
<button class="card__button">LinkedIn</button>
<button class="card__button">Twitter</button>
<button class="card__button">Instagram</button>
</div>
</article>
<footer>challenge by <a href="https://www.frontendmentor.io/challenges/social-links-profile-UG32l9m6dQ">frontendmentor</a></footer>
</body>
</html>