-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (36 loc) · 1.11 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
<!DOCTYPE html>
<html lang="es">
<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">
<title>Frontend Mentor | Profile card component</title>
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/mis_estilos.css">
</head>
<body>
<div class="container">
<div class="container-top">
<img class="container-top-img" src="./images/image-victor.jpg" alt="id-card photo">
</div>
<div class="container-middle">
<p class="name">Victor Crest</p> <span>26</span>
<p class="container-middle-location">London</p>
</div>
<div class="container-bottom">
<article>
<p class="stats">80K</p>
<span>Followers</span>
</article>
<article>
<p class="stats">803K</p>
<span>Likes</span>
</article>
<article>
<p class="stats">1.4K</p>
<span>Photos</span>
</article>
</div>
</div>
</body>
</html>