-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
53 lines (39 loc) · 1.23 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
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/style.css">
<title>Profile card component</title>
</head>
<body>
<div class="card__wrapper">
<div class="card">
<div class="card__header">
<img src="./images/image-victor.jpg" alt="Profile Photo" class="profile_photo">
<h1 class="profile_name">
Victor Crest <span class="age">26</span>
</h1>
<p class="city">London</p>
</div>
<div class="card__footer">
<div class="counter">
<p>80k</p>
<h2>Followers</h2>
</div>
<div class="counter">
<p>803k</p>
<h2>Likes</h2>
</div>
<div class="counter">
<p>1.4k</p>
<h2>Photos</h2>
</div>
</div>
</div>
</div>
</body>
</html>