-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
56 lines (53 loc) · 2.51 KB
/
index.html
File metadata and controls
56 lines (53 loc) · 2.51 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<!-- etiquetas meta -->
<meta name="description" content="" />
<meta name="keywords" content="" />
<meta name="author" content="" />
<!-- estilos -->
<link rel="stylesheet" href="css/reducido.css">
<!-- fuente -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap" rel="stylesheet">
<!-- favicon -->
<link rel="shortcut icon" href="images/favicon-32x32.png" type="image/x-icon">
<!-- titulo -->
<title>NFT Preview Card Component | 100 days of projects</title>
</head>
<body>
<section class="container-fluid bg-dark d-flex justify-content-center align-items-center vh-100">
<div class="card bg-primary shadow rounded-3 border-0" style="width: 300px;">
<div class="card-body rounded-3 text-center">
<div class="image-container">
<img src="images/image-equilibrium.jpg" alt="Overlay" class="banner rounded-3 main-image">
<div class="overlay d-flex justify-content-center align-items-center">
<img src="images/icon-view.svg" alt="Icon view" class="image">
</div>
</div>
<div class="text-start">
<h5 class="my-3 titulo">Equilibrium #3429</h5>
<p class="texto">Our Equilibrium collection promotes balance and calm</p>
</div>
<div class="clearfix">
<span class="float-start icono-texto">
<img src="images/icon-ethereum.svg" alt="Ethereum">
0.041 ETH</span>
<span class="float-end texto">
<img src="images/icon-clock.svg" alt="Clock">
3 days left</span>
</div>
<hr class="linea">
<div class="d-flex">
<img src="images/image-avatar.png" alt="Avatar" class="avatar border border-1 border-light rounded-circle">
<p class="mx-2 texto">Creation of <span class="titulo">Jules Wyvern</span> </p>
</div>
</div>
</div>
</section>
</body>
</html>