-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (49 loc) · 1.93 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card | Frontend Mentor</title>
<link rel="stylesheet" href="app.css">
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
</head>
<body>
<!-- CARD CONTAINER -->
<div id="container">
<!-- CARD -->
<main id="card">
<!-- CARD TOP WITH PATTERN BACKGROUND -->
<div id="card-top"></div>
<!-- CONTAINER FOR USER IMAGE AND PROFILE -->
<div id="card-center">
<img src="images/image-victor.jpg" alt="photo">
<section id="user-info">
<h3 id="name">Victor Crest <span id="age">26</span></h3>
<p id="location">London</p>
</section>
</div>
<!-- USER INTERACTIONS AND POSTS COUNT -->
<div id="interactions">
<section id="followers">
<h3>80K</h3>
<p>Followers</p>
</section>
<section id="likes">
<h3>803K</h3>
<p>Likes</p>
</section>
<section id="photos">
<h3>1.4K</h3>
<p>Photos</p>
</section>
</div>
</main>
</div>
<!-- FOOTER FOR CHALLENGE INFO AND MY GITHUB PROFILE -->
<footer>
<p>Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor.</a> Coded by <a href="https://github.com/GoldenAceTech" target="_blank">Afolabi Oseni.</a></p>
</footer>
</body>
</html>