-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
39 lines (36 loc) · 1.44 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Frontend Mentor | NFT Preview Card Component || In Web 3 We Entrust</title>
<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="styles.css">
</head>
<body>
<div class="shadow">
<div class="container">
<div class="frontcover">
<div class="view"></div>
</div>
<div class="section">
<h1 class="title">Equilibrium #3429</h1>
<p class="description">Our Equilibrium collection promotes balance and calm.</p>
<div class="content flex">
<div class="eth flex"><img src="images/icon-ethereum.svg" alt="eth logo">0.041 ETH</div>
<div class="clock flex"><img src="images/icon-clock.svg" alt=" clock illustrstion">3 days left</div>
</div>
<div class="line"></div>
<div class="doer flex">
<div><img src="images/image-avatar.png" alt="" class="avatar"></div>
<div class="text"> <span class="creator-text"> Creation of </span> <span class="name">Jules Wyvern</span></div>
</div>
</div>
</div>
</div>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://github.com/laCaelihermosa">lotso' coffee</a>.
</div>
</body>
</html>