-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
45 lines (41 loc) · 1.45 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Price Tracker</title>
<link rel="stylesheet" href="styles.css">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/locale/en-US/index.js"></script>
</head>
<body>
<div class="container">
<h1>Crypto Price Tracker</h1>
<button id="darkModeToggle">Dark</button>
<br>
<br>
<input type="text" id="cryptoInput" placeholder="Enter cryptocurrency (e.g., bitcoin)">
<br>
<button id="fetchButton">Get Price</button>
<div id="priceDisplay"></div>
<canvas id="priceChart" width="400" height="200" style="display: none;"></canvas>
<h2>Top 100 Cryptocurrencies</h2>
<table id="cryptoTable">
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Symbol</th>
<th>Price (USD)</th>
</tr>
</thead>
<tbody>
<!-- Data will be populated here -->
</tbody>
</table>
</div>
<script src="script.js"></script>
</body>
</html>