-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (48 loc) · 1.53 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="style.css">
<title>Frontend Mentor | NFT preview card component</title>
</head>
<body>
<div class="card mobile">
<div class="card-image">
</div>
<h3 class="hover">
Equilibrium #3429
</h3>
<p>
Our Equilibrium collection promotes balance and calm.
</p>
<div class="icons">
<div class="icons-eth">
<svg width="11" height="18" 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>
<span class="eth-val">0.041 ETH</span>
</div>
<div class="icons-clock">
<svg width="17" height="17" 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>
<span class="clock-val">3 days left</span>
</div>
</div>
<hr>
<div class="avatar">
<img src="images/image-avatar.png" width="35" height="35" alt="avatar">
<p>
Creation of <span class="hover">
Jules Wyvern
</span>
</p>
</div>
</div>
</body>
</html>