-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
65 lines (61 loc) · 2.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
<html>
<head>
<title>NFT Site</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
</head>
<body>
<header>
<div class="container">
<h1>
Wildly Expensive JPEGs
<span class="subheading">(Also known as NFTs)</span>
</h1>
<!-- Site Navigation -->
<nav>
<ul>
<li><a href="#">Buy</a></li>
<li><a href="#">Resources</a></li>
<li><a href="#">Explore</a></li>
</ul>
</nav>
</div>
</header>
<main>
<section>
<div class="container">
<h2>Meta-Pigeon Sneaker NFT: $33,000</h2>
<img src="images/sneakers-purple.png" alt="Purple and silver sneakers" class="main-image">
<h3>At $33k, this NFT sneaker is super good value!</h3>
<p>If you've got lots of money and you're a bit silly, NFTs are a great way to pay for something that doesn't have any intrinsic value or even exist. Tech fashionistas are jumping on the NFT bandwagon and spending eye-watering sums of money on crypto images. Our advice: spend the weekend <a href="#">crafting an NFT</a>, and by this time next week, you'll be a millionaire.</p>
<a href="#" class="btn btn-dark">Buy NFTs</a>
<a href="#" class="btn btn-mid">More info</a>
</div>
</section>
<section class="section-two">
<div class="container">
<h2>For the true Crypto-connoisseur</h2>
<div class="section-two-image-container">
<div class="feature-item">
<img src="images/crypto-punk.jpg" alt="punk with blach hair and red and blue glasses" class="feature-image">
<p>Is $33k for sneakers too basic? No problem! This CryptoPunk is a steal at $6.6 million, making Bag #748 (right) a total bargain.</p>
</div>
<div class="feature-item">
<img src="images/bag.svg" alt="Seven items from a game listed in white on a black background" class="feature-image">
<p>That's not a screenshot. Those eight lines of white text on a black background is the actual NFT we're selling for $1.4 million.</p>
</div>
</div>
<a href="#" class="btn btn-light">About Us</a>
<a href="#" class="btn btn-mid">Contact</a>
<p>Still not convinced? To be honest, nor are we. That's why we're selling them, not buying them.</p>
</div>
</section>
<footer>
<p>© 2022 FoolsGold.com</p>
</footer>
</main>
</body>
</html>