-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (39 loc) · 2.02 KB
/
index.html
File metadata and controls
40 lines (39 loc) · 2.02 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
<!DOCTYPE html>
<html lang="en">
<head>
<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">
<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>
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<main class="container">
<div class="image-parent">
<img class="equilibrium" src="images/image-equilibrium.jpg" alt="" width="200" height="200">
<div class="eye-parent"><span class="eye"><!-- eye icon --></span></div>
</div>
<div class="wrapper-title">
<h1><a href="#">Equilibrium #3429</a></h1> <!-- a inside h1 is better -->
</div>
<div class="wrapper-description">
<p>Our Equilibrium collection promotes balance and calm.</p>
</div>
<div class="time-diamond">
<div><img src="images/icon-ethereum.svg" alt="logo-ethereum" width="17" height="17"> <span>0.041 ETH</span></div>
<div><img src="images/icon-clock.svg" alt="logo-clock" width="17" height="17"> <span>3 days left</span></div>
</div>
<hr>
<div class="avatar-description">
<img src="images/image-avatar.png" alt="Jules Wyvern" width="20" height="20">
<p> Creation of <a href="#">Jules Wyvern</a></p>
</div>
<div class="footer">
Challenge by <a href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by <a href="https://www.linkedin.com/in/christ-k%C3%A9vin-touga-watat-32026712a?lipi=urn%3Ali%3Apage%3Ad_flagship3_profile_view_base_contact_details%3BlAuiWJSMRYamM03BlOkwjg%3D%3D">Christ Watat</a>.
</div>
</main>
</body>
</html>