-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
50 lines (45 loc) · 1.28 KB
/
index.html
File metadata and controls
50 lines (45 loc) · 1.28 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>Crypto Market Tracker</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header class="hero">
<div class="hero-content">
<h1>Crypto Market Tracker</h1>
<p>Track the Cryptocurrencies in real time with live market data.</p>
<button id="scroll-btn">See Chart</button>
</div>
</header>
<div class="carousel-wrapper">
<button class="carousel-arrow left-arrow">◀</button>
<div class="carousel" id="crypto-carousel">
</div>
<button class="carousel-arrow right-arrow">▶</button>
</div>
<div class="container">
<div id="loader">Loading...</div>
<div id="error" class="hidden">Failed to load data. Please try again.</div>
<table id="crypto-table" class="hidden">
<thead>
<tr>
<th>#</th>
<th>Coin</th>
<th>Symbol</th>
<th>Price (USD)</th>
<th>24h Change</th>
<th>Market Cap</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<footer>
<p>© 2025 Market Live Tracker. For showcase use only.</p>
</footer>
<script src="script.js"></script>
</body>
</html>