-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.29 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" type="text/css" href="style/style.css">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<title>Frontend Mentor | Profile card component</title>
</head>
<body>
<div class="bubbles">
<img class="bubble-top" src="./images/bg-pattern-top.svg" alt="background-pattern-top">
<img class="bubble-bottom" src="./images/bg-pattern-bottom.svg" alt="background-pattern-bottom">
</div>
<div class="box1">
<div class="box2"></div>
<div class="box3"><img class="profile" src="./images/image-victor.jpg" alt="profile"></div>
<div class="box4">
<p class="big">Victor Crest <span style="font-weight: 400;">26</span></p>
<p class="small">London</p>
<div class="box5">
<div class="box6">
<p class="big">80K</p>
<p class="small">Followers</p>
</div>
<div class="box6" id="mid">
<p class="big">803K</p>
<p class="small">Likes</p>
</div>
<div class="box6">
<p class="big">1.4K</p>
<p class="small">Photos</p>
</div>
</div>
</div>
</div>
</body>
</html>