forked from maym42/nft-preview-card-component-main
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (37 loc) · 1.46 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
<!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 -->
<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>
<main class="card">
<figure class="pic">
<figure class="viewScreen">
<i class="icon" id="view"></i>
</figure>
</figure>
<section class="containerContent">
<h1 class="mainTitle textHover">Equilibrium #3429</h1>
<p class="mainText">Our Equilibrium collection promotes balance and calm.</p>
<div class="containerEthTime">
<p class="eth iconPlusText"><i class="icon" id="ethereumIcon"></i>0.041 ETH</p>
<p class="timeLeft iconPlusText"><i class="icon" id="clockIcon"></i>3 days left</p>
</div>
<div class="contianerProfile">
<figure class="avatarImg"></figure>
<p class="creatorName"><span id="creator">Creation of </span><span class="textHover">Jules Wyvern</span></p>
</div>
</section>
</main>
<footer class="attribution">
Challenge by <a class="textHover" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend
Mentor</a>.
Coded by <a class="textHover" href="https://github.com/maym42" target="_blank">Maayan</a>.
</footer>
</body>
</html>