-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
44 lines (41 loc) · 1.56 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
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Componente Tarjeta de presentacion</title>
<link rel="icon" href="images/favicon-32x32.png">
<link rel="stylesheet" href="css/normalize.css">
<link rel="stylesheet" href="css/style.css">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap">
<script src="https://use.fontawesome.com/87c8f49703.js"></script>
</head>
<body>
<main>
<article>
<img class="art-header" src="images/bg-pattern-card.svg" alt="imagen header card">
<div class="art-datos">
<img class="art-img" src="images/image-victor.jpg" alt="imagen de victor">
<h1>Victor Crest <span>26</span>
</h1>
<p class="p-img">London</p>
</div>
<div class="art-footer">
<div>
<h3>80K </h3>
<p><i class="fa fa-users" aria-hidden="true"></i> Followers</i></p>
</div>
<div>
<h3>803K </h3>
<p><i class="fa fa-thumbs-up" aria-hidden="true"></i> Likes</p>
</div>
<div>
<h3>1.4K </h3>
<p><i class="fa fa-picture-o" aria-hidden="true"></i> Photos</p>
</div>
</div>
</article>
</main>
</body>
</html>