-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
61 lines (55 loc) · 2.67 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
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">
<link rel="icon" type="image/png" sizes="32x32" href="./images/favicon-32x32.png">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<!-- <link rel="stylesheet" href="Styles/stylesheet.css"> -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta2/css/all.min.css" integrity="sha512-YWzhKL2whUzgiheMoBFwW8CKV4qpHQAEuvilg9FAn5VJUDwKZZxkJNuGM4XkWuk94WCrrwslk8yWNGmY1EduTA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<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" />
<link rel="stylesheet" href="./Styles/style.css">
<title>Frontend Mentor | NFT preview card component</title>
<script defer src="js/script.js"></script>
</head>
<body>
<main class="nft-card">
<div class="card-intro">
<a href="#">
<img class="card-image" src="./images/image-equilibrium.jpg" alt="Etherium Logo">
</a>
</div>
<div class="card-body">
<div class="card-body-information">
<h1 class="header"><a class="link" href="#">Equilibrium #3429</a></h1>
<p class="description">
Our Equilibrium collection promotes balance and calm.
</p>
</div>
<div class="card-body-details">
<p class="rate">0.041 ETH</p>
<p class="description duration">3 days left</p>
</div>
<figure class="card-footer">
<img src="./images/image-avatar.png" alt="profile image" class="profile-image">
<figcaption class="description">
"Creation of "
<a class="link" href="#" class="card_link">Jules Wyvern</a>
</figcaption>
</figure>
</div>
</main>
<!--already done for me by the frontend mentor-->
<nav class="attribution">
<h2 class="attribution-information">
Challenge by <a class="attribution-link" href="https://www.frontendmentor.io?ref=challenge" target="_blank">Frontend Mentor</a>. Coded by
<a class="attribution-link" href="" target="_blank" >Losh</a >.
</h2>
<button class="attribution-btn" aria-label="Challenge author and developer information" >
<span class="fa-solid fa-code"></span>
</button>
</nav>
</body>
</html>