-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
76 lines (54 loc) · 2.05 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Custom CSS -->
<link rel="stylesheet" href="profile-card-component/style.css">
<link rel="icon" type="image/png" sizes="32x32" href="profile-card-component/images/favicon-32x32.png">
<title>Frontend Mentor | Profile card component</title>
</head>
<body>
<section class="main">
<div class="bg-circles">
<img src="profile-card-component/images/bg-pattern-top.svg" alt="" class="bg-c1">
<img src="profile-card-component/images/bg-pattern-bottom.svg" alt="" class="bg-c2">
</div>
<div class="profile-card">
<div class="profile-card_header"></div>
<!--profile card header-->
<div class="profile-card_body">
<div class="profile-card_body-img">
<img src="profile-card-component/images/image-victor.jpg" alt="">
</div>
<h1 class="profile-card_name">
Victor Crest <span class="profile-card_age">26</span>
</h1>
<h4 class="profile-card_city">London</h4>
</div>
<!--profile card body-->
<div class="profile-card_footer">
<div class="profile-card_footer-item">
<h4 class="profile-card_footer-social">80K</h4>
<p class="profile-card_footer-text">Followers</p>
</div>
<div class="profile-card_footer-item">
<h4 class="profile-card_footer-social">803K</h4>
<p class="profile-card_footer-text">Likes</p>
</div>
<div class="profile-card_footer-item">
<h4 class="profile-card_footer-social">1.4K</h4>
<p class="profile-card_footer-text">Photos</p>
</div>
</div>
<!--profile card footer-->
</div>
<!--profile card-->
<div class="footer">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/vimode/frontend-mentor-challenges">vimode</a>.
</div>
</section>
<!--main-->
</body>
</html>