-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
47 lines (42 loc) · 1.46 KB
/
index.html
File metadata and controls
47 lines (42 loc) · 1.46 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
45
46
47
<!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">
<title>Frontend Mentor | Profile card component</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<div class="profileCard">
<div class="profileInfo">
<img class="img" src="./images/image-victor.jpg" alt="Victor">
<p>Victor Crest <span class="light-grey">26</span></p>
<p class="light-grey">London</p>
</div>
<div class="stats">
<div class="follower">
<p>80K</p>
<p class="light-grey stat-category">Followers</p>
</div>
<div class="likes">
<p>803K</p>
<p class="light-grey stat-category">Likes</p>
</div>
<div class="photos">
<p>1.4K</p>
<p class="light-grey stat-category">Photos</p>
</div>
</div>
</div>
</div>
<!-- <div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">MD</a>.
</div> -->
</body>
</html>