-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
74 lines (50 loc) · 1.48 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
<!DOCTYPE html>
<html lang="en">
<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">
<title>NFT preview card</title>
<!--
- google font link
-->
<link href="https://fonts.googleapis.com/css?family=Outfit:100,200,300,regular,500,600,700,800,900"
rel="stylesheet" />
<!--
- custom css link
-->
<link rel="stylesheet" href="./css/styles.css">
</head>
<body>
<!--
- card structure
-->
<div class="card">
<div class="card__head">
<div class="card__product-img">
<img src="./images/image-equilibrium.jpg" alt="">
</div>
</div>
<div class="card__body">
<a href="#">
<h3 class="card__title">Equilibrium #3429</h3>
</a>
<p class="card__text">Our Equilibrium collection promotes balance and calm.</p>
<div class="wrapper">
<div class="card__price">
<img src="./images/icon-ethereum.svg" alt="" class="card__icon">
<span>0.041 ETH</span>
</div>
<div class="card__countdown">
<img src="./images/icon-clock.svg" alt="" class="card__icon">
<span>3 days left</span>
</div>
</div>
</div>
<div class="card__footer">
<img src="./images/image-avatar.png" alt="" class="card__author-img">
<p class="card__author-name"> Creation of <a href="#"> Jules Wyvern</a></p>
</div>
</div>
</body>
</html>