-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
59 lines (52 loc) · 2.07 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
54
55
56
57
58
59
<!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 -->
<!-- favicon goes here -->
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<!-- stylesheet link goes here -->
<link rel="stylesheet" href="styles.css">
<!-- font links goes here-->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap" rel="stylesheet">
<!-- title goes here -->
<title>NFT preview card component</title>
<!-- Feel free to remove these styles or customise in your own stylesheet 👍 -->
</head>
<body>
<!-- Main Content -->
<main>
<div class="container">
<div id="combined-images">
<img class="equilibrium-image" src="/images/image-equilibrium.jpg" alt="3D square">
<img class="hidden" src="/images/icon-view.svg" alt="eye-view">
</div>
<h1 class="equilibrium-heading">Equilibrium #3429</h1>
<p class="description">Our Equilibrium collection promotes balance and calm.</p>
<div class="price-duration-container">
<div style="display:flex">
<img src="/images/icon-ethereum.svg" alt="ethereum-icon">
<p class="eth-price">0.041 ETH</p>
</div>
<div style="display:flex" class="clock-duration">
<img src="/images/icon-clock.svg" alt="clock-icon">
<p class="duration">3 days left</p>
</div>
</div>
<div class="line"></div>
<div class="card-footer">
<img src="/images/image-avatar.png" alt="avatar" style="width: 35px; height: 35px;">
<p>Creation of <span>Jules Wyvern</span></p>
</div>
</div>
</main>
<!-- Footer Content-->
<footer>
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="#">Mark Escosura</a>.
</footer>
</body>
</html>