-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
49 lines (40 loc) · 1.59 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
<!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" type="text/css" href="style.css">
<title>Frontend Mentor | NFT preview card component</title>
</head>
<body>
<div class="center">
<main class="nftcard">
<div class="img-container">
<img src="images/image-equilibrium.jpg" alt="Equilibrium logo">
</div>
<a href="#" id="title">
Equilibrium #3429
</a>
<p id="description">
Our Equilibrium collection promotes balance and calm.
</p>
<div id="amount">
<span class="flex-items-center">
<i class="icon eth"></i>
0.041 ETH
</span>
<span class="flex-items-center">
<i class="icon clock"></i>
3 days left
</span>
</div>
<hr>
<div class="author flex-items-center">
<img src="images/image-avatar.png" class="avatar" alt="Avatar photo">
<p>Creation of <a rel="author" href="#">Jules Wyvern</a></p>
</div>
</main>
</div>
</body>
</html>