-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (63 loc) · 2.21 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
60
61
62
63
64
65
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css?family=Outfit"
rel="stylesheet"
/>
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0-alpha1/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-GLhlTQ8iRABdZLl6O3oVMWSktQOp6b7In1Zl3/Jr59b6EGGoI1aFkw7cmDA6j6gD"
crossorigin="anonymous"
/>
<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="src/styles.css" />
</head>
<body class="container">
<main class="card-container p-4" style="width: 30rem">
<div class="img-overlay mt-3" style="width: 26rem; height: 25.7rem;">
<img
class="card-img-top card-image"
src="images/image-equilibrium.jpg"
alt="A glass cube resting on its vertex in an equilibrium position"
/>
<img class="hover-img" src="images/icon-view.svg" alt="An eye icon to appear when hovered the image">
</div>
<div class="card-body p-2 mt-3">
<h1>Equilibrium #3429</h1>
<p class="description pt-3">
Our Equilibrium collection promotes balance and calm.
</p>
<div class="row mt-4">
<p class="col-7 cyan">
<img src="images/icon-ethereum.svg" alt="A cyan colored crystal" />0.041 ETH
</p>
<p class="col-5 soft-blue">
<img src="images/icon-clock.svg" alt="A clock icon" />3 days left
</p>
</div>
<div class="divider"></div>
<div class="grid mt-4">
<img
class="creator"
src="images/image-avatar.png"
alt="Jules Wyvern's photo"
/>
<p class="mt-2">
<span class="soft-blue">Creation of </span><span class="creator-name">Jules Wyvern</span>
</p>
</div>
</div>
</main>
<footer class="attribution">Coded by <a target="_blank" href="https://neew18.github.io/neew-links-tree/">Nann Ei Ei Win</a>.</footer>
</body>
</html>