-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (33 loc) · 1.18 KB
/
index.html
File metadata and controls
33 lines (33 loc) · 1.18 KB
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
<!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">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
<title>Frontend Mentor | Profile card component</title>
<style>
.attribution { font-size: 11px; text-align: center; }
.attribution a { color: hsl(228, 45%, 44%); }
</style>
</head>
<body>
<div class="wrapper">
<main class="card">
<div class="card-header">
<img src="images/image-victor.jpg" alt="Tomasz Skret">
</div>
<section class="data">
<h1>Victor Crest <span class="lighter-font"> 26</span></h1>
<p class="lighter-font">London</p>
</section>
<footer class="card-footer">
<h2 class="item1">80K <span>Followers</span></h2>
<h2 class="item2">803K <span>Likes</span></h2>
<h2 class="item3">1.4K <span>Photos</span></h2>
</footer>
</main>
</div>
</body>
</html>