-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 1.18 KB
/
index.html
File metadata and controls
31 lines (31 loc) · 1.18 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Crypto Tracker</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.jsdelivr.net/npm/chart.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns"></script>
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<h1>Crypto Tracker</h1>
<input type="text" id="crypto-symbol" placeholder="Enter cryptocurrency symbol (e.g., BTC)">
<select id="time-range">
<option value="1">1 Day</option>
<option value="7">1 Week</option>
<option value="30">1 Month</option>
<option value="365">1 Year</option>
</select>
<button id="fetch-data">Fetch Data</button>
<div id="notice"></div>
<div id="crypto-data"></div>
<canvas id="crypto-chart" width="400" height="200"></canvas>
</div>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script src="particles-config.js"></script>
<script src="script.js"></script>
</body>
</html>