-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
82 lines (79 loc) · 2.95 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="style.css" />
<title>NFT Site</title>
</head>
<body>
<header>
<div class="container">
<h1>Insanely Expensive JPEGs</h1>
<h3>(Also known as NFTs)</h3>
</div>
</header>
<main>
<section>
<div class="container">
<h2>Meta-Pigeon Sneaker NFT $33,000</h2>
<img C:\Users\User\Desktop\Programming\ptg\scrimba\nft-site
src="images\pic1.avif"
alt="Purple and silver sneakers"
class="main-image"
/>
<p><strong>At $33k, this NFT sneaker is super good value!</strong></p>
<p>
If you've got lots of money and you're a bit daft, 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">
<img
src="images\pic2.avif"
alt="punk with blach hair and red and blue glasses"
class="feature-image"
/>
<img
src="images/pic3.avif"
alt="Seven items from a game listed in white on a black background"
class="feature-image"
/>
</div>
<p>
Is $33k for sneakers too basic for you? No problem! This CryptoPunk
(left) is a steal at $6.6 million! Which makes Bag #748 (right) a
total bargain at $1.4 million. And by the way, that's not a VS Code
screenshot we included by mistake. The eight lines of white text on
a black background is the actual NFT we're selling.
</p>
<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>
<p>
Still not convinced? To be honest, nor are we. That's why we're
selling them, not buying them. - written by glory
</p>
</div>
</section>
<footer>
<p>© <span id="year"></span> FoolsGold.com</p>
</footer>
</main>
<script src="script.js"></script>
</body>
</html>