-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (42 loc) · 1.72 KB
/
index.html
File metadata and controls
48 lines (42 loc) · 1.72 KB
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
<!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">
<title>Frontend Mentor | NFT preview card component</title>
<link rel="stylesheet" href="css/index.css">
</head>
<body>
<main class="container">
<section class="main-card">
<div class="image-container">
<img src="images/image-equilibrium.jpg" alt="nft" class="main-image">
<div class="overlay"></div>
<img src="images/icon-view.svg" alt="view icon" class="view">
</div>
<div class="text-container">
<h1 class="title">Equilibrium #3429</h1>
<p class="description">Our Equilibrium collection promotes balance and calm.</p>
<div class="eth-info">
<div class="info">
<img src="images/icon-ethereum.svg" alt="ETH" class="icon"><span class="eth">0.041 ETH</span>
</div>
<div class="info">
<img src="images/icon-clock.svg" alt="clock" class="icon"><span>3 days left</span>
</div>
</div>
<div class="creator-info">
<img src="images/image-avatar.png" alt="Jules Wyvern" class="avatar">
<p class="creator-text">Creation of <a href="https://github.com/ragulpalanisamy"> <span class="creator-name">Ragul</span></a></p>
</div>
</div>
</section>
</main>
<footer class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>.
Coded by <a href="https://nakoyawilson.netlify.app/">Nakoya Wilson</a>.
</footer>
</body>
</html>