-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
77 lines (57 loc) · 2.6 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
75
76
77
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, minimum-scale=1">
<!-- displays site properly based on user's device -->
<link rel="stylesheet" href="style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<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@300;400;600&display=swap" rel="stylesheet">
<title>Frontend Mentor | NFT preview card component</title>
</head>
<body>
<div class="box">
<div class="image">
<img src="./images/image-equilibrium.jpg" alt="image-equilibrium.jpg" class="img-head">
<svg class="eye" width="48" height="48" xmlns="http://www.w3.org/2000/svg">
<g fill="none" fill-rule="evenodd">
<path d="M0 0h48v48H0z" />
<path
d="M24 9C14 9 5.46 15.22 2 24c3.46 8.78 12 15 22 15 10.01 0 18.54-6.22 22-15-3.46-8.78-11.99-15-22-15Zm0 25c-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10-4.48 10-10 10Zm0-16c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6Z"
fill="#FFF" fill-rule="nonzero" />
</g>
</svg>
</div>
<div class="title">Equilibrium #3429</div>
<div class="description">Our Equilibrium collection promotes balance and calm.</div>
<div class="info">
<div class="ethereum">
<svg width="15" height="17" xmlns="http://www.w3.org/2000/svg">
<path d="M11 10.216 5.5 18 0 10.216l5.5 3.263 5.5-3.262ZM5.5 0l5.496 9.169L5.5 12.43 0 9.17 5.5 0Z"
fill="#00FFF8" />
</svg>
0.041 ETH
</div>
<div class="clock">
<svg width="20" height="15" xmlns="http://www.w3.org/2000/svg">
<path
d="M8.305 2.007a6.667 6.667 0 1 0 0 13.334 6.667 6.667 0 0 0 0-13.334Zm2.667 7.334H8.305a.667.667 0 0 1-.667-.667V6.007a.667.667 0 0 1 1.334 0v2h2a.667.667 0 0 1 0 1.334Z"
fill="#8BACD9" />
</svg>
3 days left
</div>
</div>
<hr>
<div class="box-footer">
<img src="./images/image-avatar.png" alt="image-avatar.png" class="avatar">
<p>Creation of <span>Jules Wyvern</span></p>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Pratham Gupta</a>.
</div>
</body>
</html>