-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathnft.html
72 lines (66 loc) · 3.44 KB
/
nft.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
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Bootstrap -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-T3c6CoIi6uLrA9TneNEoa7RxnatzjcDSCmG1MXxSR1GAsXEV/Dwwykc2MPK8M2HN" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="nft.css">
<link rel="icon" type="image/x-icon" href="res/nft/favicon.ico">
<title>NFTs</title>
</head>
<body>
<!-- Navbar from https://getbootstrap.com/docs/4.0/components/navbar/#how-it-works -->
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<a class="navbar-brand ms-2" href="#">TLRM</a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarContent" aria-controls="navbarContent" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarContent">
<div class="navbar-nav">
<a class="nav-item nav-link" href="index.html">Home</a>
<a class="nav-item nav-link" href="powerpoint.html">PowerPoint</a>
<a class="nav-item nav-link active" href="nft.html">NFTs</a>
<a class="nav-item nav-link" href="crypto.html">Crypto</a>
<a class="nav-item nav-link" href="whatsapp.html">WhatsApp</a>
</div>
</div>
</nav>
<div class="ms-4 me-4 mt-4 mb-4">
<h1>NFTs</h1>
<hr>
<h3>What are NFTs?</h3>
<p>NFT stands for "non-fungible token", and is an <i>identifier</i> of sorts which is recorded on a blockchain. NFTs can be transferred, meaning they can be sold. Due to NFTs being inherently non-fungible (and therefore one of a kind), they can theoretically be worth a lot of money. NFTs are often bought and sold via marketplaces such as <a href="https://opensea.io/" target="_blank">Opensea</a>, as seen below.</p>
<img src="res/nft/opensea.png" alt="Screenshot of the main page of Opensea.io" id="opensea-image" class="mb-4">
<h3>How do NFTs make a positive contribution to society?</h3>
<ul>
<li>NFTs allow artists to monetise their work in the digital space</li>
<li>NFTs help keep energy companies in business, due to the energy requirements associated with the blockchain</li>
<ul>
<li>This keeps the mines open</li>
</ul>
<li>NFTs provide a great source of discussion and debate</li>
<li>NFTs can be a great inspiration and motivator to people wanting to become blockchain developers</li>
</ul>
<h3>Notorious NFT Projects</h3>
<p>Many NFT projects became very well-known, below are a few examples:</p>
<ul>
<li><a href="https://en.wikipedia.org/wiki/CryptoPunks" target="_blank">Cryptopunks</a></li>
<li><a href="https://en.wikipedia.org/wiki/Bored_Ape" target="_blank">Bored Ape Yacht Club</a></li>
<li><a href="https://cryptozooworld.com/" target="_blank">Cryptozoo</a></li>
</ul>
<footer>
<div id="footerDiv" class="footerClass">
<p>
<a href="https://github.com/lucfis"><img src="res/github-mark.svg" class="github-logo"/></a>
Written by Lucas
</p>
<a href="index.html">Back to main page</a>
</div>
</footer>
</div>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-C6RzsynM9kWDrMNeT87bh95OGNyZPhcTNXj1NW7RuBCsyN/o0jlpcV8Qyq46cDfL" crossorigin="anonymous"></script>
</body>
</html>