-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprofile-card.html
40 lines (37 loc) · 965 Bytes
/
profile-card.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile card component</title>
<link rel="stylesheet" href="/assets/profile-card/style.css">
</head>
<body>
<main class="card">
<section>
<img src="/assets/profile-card/bg-pattern-card.svg" alt="Pattern top">
<img src="/assets/profile-card/image-victor.jpg" alt="Victor">
<h1> <strong>Victor Crest </strong> <span>26</span> </h1>
<p class="london">London</p>
</section>
<section class="info">
<article>
<b>80K</b>
<p>Followers</p>
</article>
<article>
<b>803K</b>
<p>Likes</p>
</article>
<article>
<b>1.4K</b>
<p>Photos</p>
</article>
</section>
</main>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Your Name Here</a>.
</div>
</body>
</html>