-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
66 lines (64 loc) · 3.24 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
66
<!DOCTYPE html>
<!--
<NFT Card: A card preview i designed for Frontend Mentor challenge.>
Copyright (C) <2022> <Cromega>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<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>
<aside id = "modal">
<div>
<a href="#">Back</a>
<h1>Equilibrium <strong>#3429</strong></h1>
<img src="https://github.com/cromega08/nft_preview_card/blob/master/images/image-equilibrium.jpg?raw=true" alt="Equilibrium">
<p id = "description" style="margin-bottom: 2em;"><em>Our Equilibrium collection promotes balance and calm.</em></p>
</div>
</aside>
<section>
<label>
<img src="https://github.com/cromega08/nft_preview_card/blob/master/images/image-equilibrium.jpg?raw=true" alt="Equilibrium">
<a href="#modal" id = "img_box">
<div id = "background"></div>
<svg width="48" height="48" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><path d="M0 0h48v48H0z"/><path d="M24 9C14 9 5.46 15.22 2 24c3.46 8.78 12 15 22 15 10.01 0 18.54-6.22 22-15-3.46-8.78-11.99-15-22-15Zm0 25c-5.52 0-10-4.48-10-10s4.48-10 10-10 10 4.48 10 10-4.48 10-10 10Zm0-16c-3.31 0-6 2.69-6 6s2.69 6 6 6 6-2.69 6-6-2.69-6-6-6Z" fill="#FFF" fill-rule="nonzero"/></g></svg>
</a>
</label>
<p id = "title">Equilibrium <strong>#3429</strong></p>
<p id = "description"><em>Our Equilibrium collection promotes balance and calm.</em></p>
<div id = "offer">
<div id = "ether">
<svg width="11" height="18" xmlns="http://www.w3.org/2000/svg"><path d="M11 10.216 5.5 18 0 10.216l5.5 3.263 5.5-3.262ZM5.5 0l5.496 9.169L5.5 12.43 0 9.17 5.5 0Z" fill="#00FFF8"/></svg>
<p id = "cost">0.041 ETH</p>
</div>
<p id = "limit">3 days left</p>
</div>
<div id = "creator">
<p><em>Created by</em></p>
<img src="https://github.com/cromega08/nft_preview_card/blob/master/images/image-avatar.png?raw=true" alt="">
<p id = "author"><em><strong>Jules Wyvern</strong></em></p>
</div>
</section>
</body>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
<br>
Coded by <a href="#">Cromega</a>.
</footer>
</html>