-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
106 lines (98 loc) · 4.27 KB
/
Copy pathindex.html
File metadata and controls
106 lines (98 loc) · 4.27 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>CryptoTracker - Real-time Cryptocurrency Prices</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="container">
<nav>
<div class="nav-left">
<img src="images/logo.png" class="logo" alt="CryptoTracker Logo">
<span class="logo-text">CryptoTracker</span>
</div>
<ul class="nav-menu">
<li><a href="#home" class="nav-link">Home</a></li>
<li><a href="#prices" class="nav-link">Prices</a></li>
<li><a href="#about" class="nav-link">About</a></li>
</ul>
<a href="#" class="btn btn-secondary">EN</a>
</nav>
<!-- Home Section -->
<section id="home" class="hero-section">
<div class="content">
<h1 class="hero-title">Buy & <br><span class="gradient-text">Sell Crypto</span></h1>
<p class="hero-description">Stay updated with real-time prices, market trends, and personalized insights for smarter investment decisions.</p>
<a href="#prices" class="btn btn-primary">View Prices</a>
</div>
<div class="coin-showcase" id="coin-showcase">
<div class="loading-spinner">
<div class="spinner"></div>
<p>Loading live prices...</p>
</div>
</div>
</section>
<!-- Prices Section -->
<section id="prices" class="prices-section">
<h2>Live Cryptocurrency Prices</h2>
<p class="section-subtitle">Real-time market data updated every 30 seconds</p>
<div class="prices-grid" id="prices-grid">
<div class="loading-spinner">
<div class="spinner"></div>
<p>Loading prices...</p>
</div>
</div>
<div id="error-message" class="error-message" style="display: none;"></div>
</section>
<!-- About Section -->
<section id="about" class="about-section">
<div class="about-container">
<h2>About CryptoTracker</h2>
<div class="about-content">
<div class="about-card">
<div class="about-icon">🔍</div>
<h3>Real-Time Tracking</h3>
<p>Monitor cryptocurrency prices in real-time with data updated every 30 seconds. Stay informed about market movements instantly.</p>
</div>
<div class="about-card">
<div class="about-icon">📊</div>
<h3>Market Analytics</h3>
<p>View comprehensive market data including 24-hour price changes, market capitalization, and trading volume for informed decisions.</p>
</div>
<div class="about-card">
<div class="about-icon">🌐</div>
<h3>Easy Access</h3>
<p>Access cryptocurrency prices anytime, anywhere. Our responsive design works perfectly on desktop, tablet, and mobile devices.</p>
</div>
<div class="about-card">
<div class="about-icon">⚡</div>
<h3>Fast & Reliable</h3>
<p>Powered by CoinGecko API, we provide accurate, reliable data with 99.9% uptime for uninterrupted service.</p>
</div>
</div>
<div class="features-section">
<h3>Key Features</h3>
<ul class="features-list">
<li>✓ Track 8 major cryptocurrencies</li>
<li>✓ 24-hour price change indicators</li>
<li>✓ Market cap and volume data</li>
<li>✓ Automatic price updates</li>
<li>✓ Mobile responsive design</li>
<li>✓ Error handling and reliability</li>
</ul>
</div>
</div>
</section>
<!-- Contact Section -->
<!-- Removed -->
<!-- Footer -->
<footer class="footer">
<p>© 2026 CryptoTracker. All rights reserved.</p>
<p class="footer-note">Live prices powered by CoinGecko API • Last updated: <span id="update-time">--:--</span></p>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>