-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
51 lines (48 loc) · 2.17 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
<!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">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="https://fonts.google.com/specimen/Kumbh+Sans">
<link rel="icon" href="images/favicon-32x32.png" type='image/icon'>
<title>Profile Card</title>
</head>
<body>
<header class="header">
<div class="bg-top">
<img src='images/bg-pattern-top.svg' alt='Top background'>
</div>
<div class="profile-card">
<div class="profile-card-top">
<div class="profile-card-top__background">
<img src="images/bg-pattern-card.svg" alt="Top background" class="profile-card-top__background--img">
</div>
<figure class="profile-card__author">
<img src="images/image-victor.jpg" alt="Profile image" class="profile-card__author--img">
<figcaption class="profile-card__author--name">Victor Crest <span class="profile-card__author--age">26</span></figcaption>
</figure>
<div class="profile-card__profile--location">London</div>
</div>
<div class="profile-card-stats">
<div class="profile-card__followers">
<div class="profile-card__followers--number">80K</div>
<div class="profile-card__followers--text">followers</div>
</div>
<div class="profile-card__likes">
<div class="profile-card__likes--number">803K</div>
<div class="profile-card__likes--text">likes</div>
</div>
<div class="profile-card__photos">
<div class="profile-card__photos--number">1.4K</div>
<div class="profile-card__photos--text">photos</div>
</div>
</div>
</div>
<div class="bg-bottom">
<img src='images/bg-pattern-bottom.svg' alt='Bottom background'>
</div>
</header>
</body>
</html>