-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
58 lines (47 loc) · 1.79 KB
/
index.html
File metadata and controls
58 lines (47 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href="style.css">
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<title>Frontend Mentor | NFT preview card component</title>
<style>
.attribution {
font-size: 11px;
text-align: center;
margin: 2rem 1rem;
}
.attribution a {
color: hsl(228, 45%, 44%);
}
</style>
</head>
<body>
<main>
<div class="container">
<div class="image-block">
<div><img src="./assets/images/image-equilibrium.jpg" alt="error"></div>
<span class="view-img"></span>
</div>
<h1> Equilibrium #3429</h1>
<p class="first-p">Our Equilibrium collection promotes balance and calm.</p>
<div class="inner-block-content">
<p class="inner-1"><img src="assets/images/icon-ethereum.svg" alt="error">0.041 ETH</p>
<p class="inner-2"><img src="assets/images/icon-clock.svg" alt="error">3 days left</p>
</div>
<hr>
<div class="avtar-block">
<div class="avatar-img">
<img src="./assets/images/image-avatar.png" alt="error"> </div>
<p class="avtar-p">Creation of <span>Jules Wyvern</span></p>
</div>
</div>
</main>
<footer>
<div class="attribution">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="https://www.frontendmentor.io/profile/Manish-d-art">Manish Mandal</a>.
</div>
</footer>
</body>
</html>