-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (43 loc) · 1.49 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Airdrop - Your Crypto Project</title>
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<h1>Your Crypto Project</h1>
<p class="tagline">Claim your free tokens now!</p>
<button id="connectButton">Connect Wallet</button>
</div>
</header>
<main>
<section class="airdrop-section">
<div class="container">
<h2>How to Claim Your Airdrop</h2>
<ol>
<li>Click on "Connect Wallet" to link your wallet.</li>
<li>Ensure your wallet is on the correct network.</li>
<li>Click on "Claim Airdrop" to receive your tokens.</li>
</ol>
<button id="claimButton" disabled>Claim Airdrop</button>
</div>
</section>
</main>
<footer>
<div class="container">
<p>Follow us on social media:
<a href="#">Twitter</a> |
<a href="#">Telegram</a> |
<a href="#">Discord</a>
</p>
</div>
</footer>
<script src="https://cdn.ethers.io/lib/ethers-5.2.min.js"></script>
<script src="app.js"></script>
</body>
</html>