-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (53 loc) · 1.49 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 http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="./images/favicon-32x32.png"
/>
<title>Frontend Mentor | NFT Preview card component</title>
<link rel="stylesheet" href="./css/style.css" />
</head>
<body>
<main class="container">
<div class="img-container">
<figure>
<img
class="nft-pic"
src="./images/image-equilibrium.jpg"
alt="Equilibrium"
/>
</figure>
<div class="nft-overlay">
<img src="./images/icon-view.svg" alt="view" />
</div>
</div>
<h1>Equilibrium #3429</h1>
<p>Our Equilibrium collection promotes balance and calm.</p>
<div class="eth-box">
<div class="eth-rate">
<img
src="./images/icon-ethereum.svg"
alt="Ethereum Icon"
class="icon"
/>
<p>0.041 ETH</p>
</div>
<div class="clock">
<img src="./images/icon-clock.svg" alt="clock Icon" class="icon" />
<p>3 days left</p>
</div>
</div>
<div class="line"></div>
<div class="creator">
<img src="./images/image-avatar.png" alt="Jules Wyvern" />
<p>Creation of <span>Jules Wyvern</span></p>
</div>
</main>
</body>
</html>