-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
28 lines (28 loc) · 1.15 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <!-- displays site properly based on user's device -->
<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="top">
<div class="card">
<img class="nft" src="images\image-equilibrium.jpg" alt="">
<div class="view"><img src="images\icon-view.svg" alt=""></div>
</div>
<h2 class="title">Equilibrium #1234</h2>
<p class="desc">Our Equilibrium collection promotes ballance and calm.</p>
<div class="middle">
<span><img src="images\icon-ethereum.svg" alt=""><span class="eth t5">0.045 ETH</span></span>
<span class="span-right"><img src="images\icon-clock.svg" alt=""><span class="t5">3 days left</span></span>
</div>
<hr>
<div class="bot">
<span><img src="images\image-avatar.png" alt=""><span style="opacity:65%;">Creation of</span><span class="jls"> Jules Wyvern</span></span>
</div>
</div>
</body>
</html>