-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
43 lines (42 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A profile card component" />
<title>Profile card component | Frontend Mentor</title>
<link rel="stylesheet" href="./assets/css/style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./assets/images/favicon-32x32.png" />
</head>
<body>
<main class="card profile">
<h1 class="sr-only">Profile Card of Victor Crest</h1>
<div class="profile__header">
<img src="./assets/images/image-victor.jpg" alt="Victor Crest" class="profile__image">
<div class="profile__identification">
<h2 class="profile__name">Victor Crest</h2>
<p class="profile__age">26</p>
</div>
<p class="profile__location">London</p>
</div>
<div>
<h2 class="sr-only">Profile Statistics</h2>
<ul class="profile__stats">
<li class="profile__stat">
<span class="profile__stat-number">80K</span>
<p class="profile__stat-label">Followers</p>
</li>
<li class="profile__stat">
<span class="profile__stat-number">803K</span>
<p class="profile__stat-label">Likes</p>
</li>
<li class="profile__stat">
<span class="profile__stat-number">1.4K</span>
<p class="profile__stat-label">Photos</p>
</li>
</ul>
</div>
</main>
</body>
</html>