-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
63 lines (59 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- displays site properly based on user's device -->
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Jonathan's Profile card component</title>
<link rel="stylesheet" href="./index.css" type="text/css" />
</head>
<body>
<div class="background">
<div class="container">test</div>
<div class="profile-card">
<div class="profile-card__top">
<!-- <div class="profile-card__picture" class="profile-card__picture--inlineImg"></div> -->
<img
src="./images/image-victor.jpg"
alt="victor's picture"
class="profile-card__picture--inlineImg"
/>
<!-- <div class="profile-card__picture--img"></div> -->
</div>
<div class="profile-card__middle">
<div>
<h1>Victor Crest</h1>
<h2>26</h2>
</div>
<h3>London</h3>
</div>
<div class="profile-card__bottom">
<div class="profile-card__bottom--left">
<div class="profile-card__stat">80K</div>
<div class="profile-card__description">Followers</div>
</div>
<div class="profile-card__bottom--middle">
<div class="profile-card__stat">803K</div>
<div class="profile-card__description">Likes</div>
</div>
<div class="profile-card__bottom--right">
<div class="profile-card__stat">1.4K</div>
<div class="profile-card__description">Photos</div>
</div>
</div>
</div>
<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>
</div>
</body>
</html>