-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (52 loc) · 1.61 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<!-- viewport -->
<meta name="viewport" content="width=device-width" intial-scale="1.0" />
<!-- stylesheet -->
<link rel="stylesheet" href="style.css" />
<!-- favicon -->
<link rel="icon" href="images/favicon-32x32.png" />
<!-- google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&family=Licorice&family=Martel+Sans:wght@200;400&family=Open+Sans:ital,wght@1,300&family=Poppins:ital,wght@0,200;0,500;1,100;1,200&family=Red+Hat+Display:wght@500;700;900&family=Roboto:ital,wght@0,300;1,100;1,400&display=swap"
rel="stylesheet"
/>
<!-- title -->
<title>Profile Card</title>
</head>
<body>
<!-- background images -->
<div class="container">
<div class="one">
<div class="card">
<img src="images/bg-pattern-card.svg" />
<img src="images/image-victor.jpg" class="victor" />
</div>
<div class="name">
<h3 class="vic">Victor Crest</h3>
<p>26</p>
<p>London</p>
<hr />
</div>
<div class="footer">
<div class="followers">
<h3>80k</h3>
<p>Followers</p>
</div>
<div class="likes">
<h3>803k</h3>
<p>likes</p>
</div>
<div class="photos">
<h3>1.4k</h3>
<p>photos</p>
</div>
</div>
</div>
</div>
</body>
</html>