-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (35 loc) · 1.41 KB
/
Copy pathindex.html
File metadata and controls
40 lines (35 loc) · 1.41 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Frontend Mentor| NFT preview card component</title>
<link rel="stylesheet" href="indexstyle.css">
</head>
<body>
<main>
<div class="image">
<div class="overlay"></div>
<img class="view-icon" src="/img/download.png" alt="view icon">
<img class="product" src="/img/image-equilibrium.jpg" alt="product image">
</div>
<div class="product-name">
<h1>Equilibrium #3249</h1>
</div>
<p class="product-detail">Our Equilibrium collection promotes balance and calm.</p>
<div class="price">
<p class="price-tag"><img class="symbol" src="/img/icon-ethereum.svg" alt="ethereum icon"> 0.041ETH</p>
<p class="date"><img class="reminder" src="/img/icon-clock.svg" alt="clock"> 3 days left</p>
</div>
<div class="creator">
<img class="creator-pic" src="/img/image-avatar.png" alt="creator picture">
<p class="maker">
Creation of <span class="maker-name">Julian Wyvern</span>
</p>
</div>
</main>
<footer>
<p class="attribution">Challenge by <a href="#">Frontend mentor</a>. Coded by <a href="#">Ignacio Spreafico</a>.</p>
</footer>
</body>
</html>