-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
31 lines (31 loc) · 857 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Profile card component</title>
</head>
<body>
<main >
<img src="images/bg-pattern-card.svg" alt="" />
<div class="content">
<img src="images/image-victor.jpg" alt="Image of Victor" />
<h1>Victor Crest <span>26</span></h1>
<p>London</p>
</div>
<hr />
<ul class="info-container">
<li><strong>80K</strong>Followers</li>
<li><strong>803K</strong>Likes</li>
<li><strong>1.4K</strong>Photos</li>
</ul>
</main>
</body>
</html>