-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
37 lines (37 loc) · 1.36 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
<!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 href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="./styles.css">
<title>Profile card component</title>
</head>
<body>
<img class="bg-top" src="./images/bg-pattern-top.svg" alt="">
<main class="container">
<article class="pictures">
<img src="./images/bg-pattern-card.svg" alt="">
<img class="user" src="./images/image-victor.jpg" alt="Victor Crest photo">
</article>
<article class="profile">
<h1>Victor Crest <span>26</span></h1>
<p>London</p>
</article>
<hr>
<article class="content">
<ul class="stats">
<li>80K <span>Followers</span></li>
<li>803K <span>Likes</span></li>
<li>1.4K <span>Photos</span></li>
</ul>
</article>
</main>
<img class="bg-bottom" src="./images/bg-pattern-bottom.svg" alt="">
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/NathalyCavalcante" target="_blank">Nathaly Cavalcante</a>.
</footer>
</body>
</html>