-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (48 loc) · 1.25 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
<!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" href="style.css">
<title>Profile card component</title>
</head>
<body>
<main>
<div class="card">
<div class="card-header">
</div>
<div class="card-info">
<div class="profile-picture">
</div>
<div class="profile-info">
<div class="name-age">
<h1 class="name">Victor Crest</h1>
<p class="age">26</p>
</div>
<p class="city">London</p>
</div>
<div class="social-info">
<div class="followers">
<h2>80K</h2>
<p>Followers</p>
</div>
<div class="likes">
<h2>803K</h2>
<p>Likes</p>
</div>
<div class="photos">
<h2>1.4K</h2>
<p>Photos</p>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="attribution">
Coded by <a href="https://github.com/SartHak-0-Sach">Sarthak Sachdev</a>.
</div>
</footer>
</body>
</html>