-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (48 loc) · 1.62 KB
/
index.html
File metadata and controls
50 lines (48 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryptoExplorer - Beginner's Guide</title>
<style>
body { font-family: Arial, sans-serif; }
#map { width: 100%; height: 80vh; border: 1px solid #333; }
.category { margin: 20px; }
</style>
</head>
<body>
<h1>CryptoExplorer - Beginner's Guide</h1>
<div id="categories">
<div class="category">
<h2>Wallets</h2>
<ul>
<li><a href="#hardware-wallets" onclick="showCategory('Hardware Wallets')">Hardware Wallets</a></li>
<li><a href="#software-wallets" onclick="showCategory('Software Wallets')">Software Wallets</a></li>
</ul>
</div>
<div class="category">
<h2>Exchanges</h2>
<ul>
<li><a href="#centralized-exchanges" onclick="showCategory('Centralized Exchanges')">Centralized Exchanges</a></li>
<li><a href="#decentralized-exchanges" onclick="showCategory('Decentralized Exchanges')">Decentralized Exchanges</a></li>
</ul>
</div>
<div class="category">
<h2>Cryptocurrencies</h2>
<ul>
<li><a href="#stablecoins" onclick="showCategory('Stablecoins')">Stablecoins</a></li>
<li><a href="#altcoins" onclick="showCategory('Altcoins')">Altcoins</a></li>
</ul>
</div>
</div>
<div id="map">
<p>Select a category to view details.</p>
</div>
<script>
function showCategory(name) {
const mapDiv = document.getElementById('map');
mapDiv.innerHTML = `<h3>${name}</h3><p>Details about ${name} will appear here.</p>`;
}
</script>
</body>
</html>