-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (39 loc) · 1.53 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
<!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="stylesheet" href="./style.css">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap" rel="stylesheet">
<title>Frontend Mentor | NFT preview card component</title>
</head>
<body>
<div class="flex-container">
<div class="box">
<img src="./images/image-equilibrium.jpg" alt="glass cube standing on one edge" class="cube">
<div class="icon-container"><img src="./images/icon-view.svg" alt="eye" class="eye"></div>
</div>
<h1>Equilibrium #3429</h1>
<p>Our Equilibrium collection promotes balance and calm.</p>
<section class="selling-info">
<div class="etherium">
<img src="./images/icon-ethereum.svg" alt="etherium logo" class="icon">
<p class="price">0.041 ETH</p>
</div>
<div class="time-left">
<img src="./images/icon-clock.svg" alt="clock" class="icon">
<p>3 days left</p>
</div>
</section>
<hr>
<footer>
<img src="./images/image-avatar.png" alt="profile picture">
<p>Creation of <a href="https://github.com/Oto-Gelashvili">Basileus</a></p>
</footer>
</div>
</body>
</html>