-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
49 lines (43 loc) · 1.32 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
<!DOCTYPE html>
<html lang="es">
<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">
<title>Frontend Mentor | Profile card component</title>
<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="style.css">
</head>
<body>
<div class="pattern--top"></div>
<section class="card">
<div class="card__bg">
<img class="card__user-img" src="images/image-victor.jpg" alt="">
</div>
<div class="card__body">
<div class="card__user-personal-info">
<h1>Victor Crest <span>26</span></h1>
<h2>London</h2>
</div>
<hr>
<div class="card__user-stats">
<div class="card__user-stat-item">
<h3>80K</h3>
<p>Followers</p>
</div>
<div class="card__user-stat-item">
<h3>803K</h3>
<p>Likes</p>
</div>
<div class="card__user-stat-item">
<h3>1.4K</h3>
<p>Photos</p>
</div>
</div>
</div>
</section>
<div class="pattern--bottom"></div>
</body>
</html>