-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
40 lines (40 loc) · 1.29 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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Profile Card</title>
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=Kumbh+Sans:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<main class="flex">
<article class="card">
<img src="images/bg-pattern-card.svg" alt="cabecera de la card" class="card-header">
<div class="card-body">
<div class="img-container">
<img src="images/image-damon.jpg" alt="imagen de la card" class="card-body-img">
</div>
<h1 class="card-body-title">Nahuel Borromeo <span>23</span></h1>
<p class="card-body-text">Lima</p>
</div>
<div class="card-footer">
<div class="card-footer-social">
<h3>150K</h3>
<p>Followers</p>
</div>
<div class="card-footer-social">
<h3>999K</h3>
<p>Likes</p>
</div>
<div class="card-footer-social">
<h3>1.8K</h3>
<p>Photos</p>
</div>
</div>
</article>
</main>
</body>
</html>