-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmodule3.html
More file actions
424 lines (414 loc) · 14 KB
/
module3.html
File metadata and controls
424 lines (414 loc) · 14 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<title>TradeTrek - Cryptocurrency Basics</title>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap" rel="stylesheet">
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'Inter', sans-serif;
background-color: #111827;
color: #fff;
padding-bottom: 80px;
}
.navbar {
background-color: #1f2937;
padding: 1rem;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
display: flex;
align-items: center;
gap: 0.5rem;
text-decoration: none;
color: inherit;
}
.logo img {
width: 32px;
height: 32px;
border-radius: 8px;
}
.logo-text {
font-size: 1.25rem;
font-weight: 700;
}
.balance {
background: #22d3ee;
color: #111827;
padding: 4px 12px;
border-radius: 999px;
font-weight: bold;
margin-right: 1rem;
}
.user-avatar {
width: 32px;
height: 32px;
background: #22d3ee;
color: #111827;
display: flex;
align-items: center;
justify-content: center;
border-radius: 50%;
font-weight: bold;
text-decoration: none;
}
.module-nav {
background: #1f2937;
padding: 0.8rem 1rem;
display: flex;
justify-content: center;
gap: 1rem;
flex-wrap: wrap;
border-bottom: 1px solid #374151;
}
.module-nav a {
color: #9ca3af;
text-decoration: none;
padding: 6px 14px;
border-radius: 6px;
font-weight: 500;
font-size: 0.95rem;
}
.module-nav a.active,
.module-nav a:hover {
background-color: #22d3ee;
color: #111827;
}
.container {
padding: 2rem 1rem 1rem 1rem;
max-width: 1000px;
margin: auto;
}
.breadcrumb {
display: flex;
align-items: center;
gap: 0.5rem;
margin-bottom: 1.2rem;
font-size: 0.9rem;
color: #9ca3af;
}
.breadcrumb a {
color: #22d3ee;
text-decoration: none;
}
.breadcrumb a:hover {
text-decoration: underline;
}
.module-header {
display: flex;
flex-direction: row;
align-items: center;
background: #1f2937;
padding: 1.5rem;
border-radius: 12px;
margin-bottom: 2rem;
gap: 1rem;
}
.module-icon {
font-size: 2rem;
padding: 1rem;
border-radius: 12px;
background: none;
border: 2px solid #374151;
}
.module-info {
flex: 1;
}
.module-title {
font-size: 1.6rem;
font-weight: 700;
margin-bottom: 0.4rem;
}
.module-description {
color: #9ca3af;
margin-bottom: 0.5rem;
line-height: 1.6;
}
.module-stats {
display: flex;
gap: 1rem;
font-size: 0.9rem;
color: #9ca3af;
flex-wrap: wrap;
}
.stat-item {
display: flex;
gap: 0.3rem;
}
.content-section {
background: #1f2937;
border-radius: 12px;
padding: 1.5rem;
margin-bottom: 2rem;
}
.section-title {
font-size: 1.3rem;
font-weight: 600;
color: #22d3ee;
margin-bottom: 1rem;
}
.content-text {
color: #e0e0e0;
line-height: 1.6;
margin-bottom: 1rem;
}
.content-list {
margin-left: 1.5rem;
color: #e0e0e0;
line-height: 1.6;
}
.content-list li {
margin-bottom: 0.5rem;
}
.content-list strong {
color: #fff;
}
.book-card {
background: #1a202c;
padding: 1rem;
border-radius: 8px;
margin-bottom: 1rem;
}
.book-title {
font-weight: 600;
margin-bottom: 0.3rem;
}
.book-author {
color: #9ca3af;
font-size: 0.9rem;
margin-bottom: 0.5rem;
}
.book-description {
color: #d1d5db;
font-size: 0.9rem;
margin-bottom: 0.8rem;
line-height: 1.5;
}
.resource-link {
display: inline-block;
font-size: 0.9rem;
text-decoration: none;
}
.resource-link:hover {
text-decoration: underline;
}
.bottom-nav {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: #1f2937;
border-top: 1px solid #374151;
padding: 0.5rem 0;
}
.bottom-nav-container {
display: flex;
justify-content: space-around;
max-width: 500px;
margin: 0 auto;
}
.bottom-nav-item {
display: flex;
flex-direction: column;
align-items: center;
text-decoration: none;
color: #9ca3af;
font-size: 0.8rem;
padding: 0.5rem 0.8rem;
border-radius: 8px;
}
.bottom-nav-item.active {
color: #22d3ee;
}
.bottom-nav-icon {
font-size: 1.2rem;
margin-bottom: 0.2rem;
}
</style>
</head>
<body>
<!-- Top Navbar -->
<div class="navbar">
<a href="home.html" class="logo">
<img src="https://i.postimg.cc/3R6mNYVx/IMG-7105.png" alt="logo" />
<span class="logo-text">TradeTrek</span>
</a>
<div style="display: flex; align-items: center;">
<span class="balance">⚡10042,547.89</span>
<a href="profile.html" class="user-avatar">JD</a>
</div>
</div>
<!-- Module Navigation -->
<nav class="module-nav">
<a href="learning-module.html">← Back to Learning</a>
<a href="module1.html">Module 1</a>
<a href="module2.html">Module 2</a>
<a href="module3.html" class="active">Module 3</a>
<a href="module4.html">Module 4</a>
<a href="module5.html">Module 5</a>
</nav>
<!-- Main Content -->
<div class="container">
<div class="breadcrumb">
<a href="home.html">Home</a> <span>›</span>
<a href="learning-module.html">Learning</a> <span>›</span>
<span>Cryptocurrency Basics</span>
</div>
<div class="module-header">
<div class="module-icon">₿</div>
<div class="module-info">
<h1 class="module-title">Cryptocurrency Basics</h1>
<p class="module-description">
Learn about digital currencies, blockchain, and how to safely navigate the crypto ecosystem.
</p>
<div class="module-stats">
<div class="stat-item">📚 10 Topics</div>
<div class="stat-item">⏱️ Self-paced</div>
<div class="stat-item">🎯 Beginner</div>
</div>
</div>
</div>
<!-- Course Overview Section -->
<div class="content-section">
<h2 class="section-title">Course Overview</h2>
<p class="content-text">
Cryptocurrency is a revolutionary approach to money. You'll learn the essentials of Bitcoin, blockchain, and other digital assets.
</p>
<p class="content-text">
This course emphasizes safety, investing principles, and emerging technologies like DeFi and NFTs.
</p>
</div>
<!-- What You'll Learn Section -->
<div class="content-section">
<h2 class="section-title">What You'll Learn</h2>
<ul class="content-list">
<li>What is cryptocurrency and how it works</li>
<li>Understanding blockchain ledgers</li>
<li>Bitcoin and major altcoins</li>
<li>Cold vs hot wallets</li>
<li>Crypto exchanges and trading basics</li>
<li>How to store coins and avoid scams</li>
<li>Intro to DeFi, NFTs, and staking</li>
<li>Regulations and taxation</li>
</ul>
</div>
<!-- Learning Resources Section -->
<div class="content-section">
<h2 class="section-title">Learning Resources</h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); gap: 1.1rem;">
<!-- Videos -->
<div class="book-card">
<div class="book-title">📺 Crypto 101: Beginner's Guide</div>
<div class="book-author">Andrei Jikh</div>
<div class="book-description">Comprehensive introduction to cryptocurrency concepts.</div>
<a href="https://www.youtube.com/watch?v=VYWc9dFqROI" target="_blank" class="resource-link" style="color:#22d3ee;">🎬 Watch now</a>
</div>
<div class="book-card">
<div class="book-title">📺 Bitcoin Explained Simply</div>
<div class="book-author">3Blue1Brown</div>
<div class="book-description">Visual explanation of how Bitcoin works.</div>
<a href="https://www.youtube.com/watch?v=l1si5ZWLgy0" target="_blank" class="resource-link" style="color:#22d3ee;">🎬 Watch now</a>
</div>
<div class="book-card">
<div class="book-title">📺 Blockchain Technology Explained</div>
<div class="book-author">Simply Explained</div>
<div class="book-description">How blockchain works under the hood.</div>
<a href="https://www.youtube.com/watch?v=SSo_EIwHSd4" target="_blank" class="resource-link" style="color:#22d3ee;">🎬 Watch now</a>
</div>
<div class="book-card">
<div class="book-title">📺 Cryptocurrency Security Best Practices</div>
<div class="book-author">99Bitcoins</div>
<div class="book-description">Keeping your crypto investments safe.</div>
<a href="https://www.youtube.com/watch?v=d8IBpfs9bf4" target="_blank" class="resource-link" style="color:#22d3ee;">🎬 Watch now</a>
</div>
</div>
</div>
<!-- Recommended Reading Section -->
<div class="content-section">
<h2 class="section-title">Recommended Reading</h2>
<div style="display: grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:1.1rem;">
<div class="book-card">
<div class="book-title">📚 The Bitcoin Standard</div>
<div class="book-author">Saifedean Ammous</div>
<div class="book-description">A leading analysis of Bitcoin's economic impact and technology.</div>
<a href="https://www.amazon.com/Bitcoin-Standard-Decentralized-Alternative-Central/dp/1119473861"
class="resource-link" style="color:#22d3ee;" target="_blank">🛒 View on Amazon</a>
</div>
<div class="book-card">
<div class="book-title">📚 Mastering Bitcoin</div>
<div class="book-author">Andreas Antonopoulos</div>
<div class="book-description">The technical bible for understanding Bitcoin and cryptocurrencies.</div>
<a href="https://www.amazon.com/Mastering-Bitcoin-Programming-Open-Blockchain/dp/1491954388"
class="resource-link" style="color:#22d3ee;" target="_blank">🛒 View on Amazon</a>
</div>
<div class="book-card">
<div class="book-title">📚 Digital Gold</div>
<div class="book-author">Nathaniel Popper</div>
<div class="book-description">The untold story of Bitcoin and the people who made it happen.</div>
<a href="https://www.amazon.com/Digital-Gold-Bitcoin-Millionaires-Reinvent/dp/0062362496"
class="resource-link" style="color:#22d3ee;" target="_blank">🛒 View on Amazon</a>
</div>
<div class="book-card">
<div class="book-title">📚 The Internet of Money</div>
<div class="book-author">Andreas Antonopoulos</div>
<div class="book-description">Insightful talks by one of Bitcoin's best-known advocates.</div>
<a href="https://www.amazon.com/Internet-Money-Collection-Andreas-Antonopoulos/dp/1537000454"
class="resource-link" style="color:#22d3ee;" target="_blank">🛒 View on Amazon</a>
</div>
<div class="book-card">
<div class="book-title">📚 Cryptoassets</div>
<div class="book-author">Chris Burniske & Jack Tatar</div>
<div class="book-description">A practical investing guide to Bitcoin, Ethereum, and more.</div>
<a href="https://www.amazon.com/Cryptoassets-Innovative-Investors-Bitcoin-Beyond/dp/1260026671"
class="resource-link" style="color:#22d3ee;" target="_blank">🛒 View on Amazon</a>
</div>
<div class="book-card">
<div class="book-title">📚 Blockchain Basics</div>
<div class="book-author">Daniel Drescher</div>
<div class="book-description">A non-technical introduction to how blockchains work.</div>
<a href="https://www.amazon.com/Blockchain-Basics-Non-Technical-Introduction-Steps/dp/1484226038"
class="resource-link" style="color:#22d3ee;" target="_blank">🛒 View on Amazon</a>
</div>
</div>
</div>
<!-- Essential Crypto Principles -->
<div class="content-section">
<h2 class="section-title">Essential Crypto Principles</h2>
<ul class="content-list">
<li><strong>Not Your Keys, Not Your Coins:</strong> Always control your private keys</li>
<li><strong>Do Your Own Research (DYOR):</strong> Never invest based on hype alone</li>
<li><strong>Dollar-Cost Averaging:</strong> Reduce volatility risk through regular purchases</li>
<li><strong>Diversification:</strong> Don't put everything into one cryptocurrency</li>
<li><strong>Security First:</strong> Use hardware wallets for long-term storage</li>
<li><strong>Understand the Technology:</strong> Learn what you're investing in</li>
<li><strong>Beware of Scams:</strong> If it sounds too good to be true, it probably is</li>
</ul>
</div>
</div>
<!-- Bottom Navigation -->
<nav class="bottom-nav">
<div class="bottom-nav-container">
<a href="learning-module.html" class="bottom-nav-item active">
<div class="bottom-nav-icon">⭐</div>
<span>Learning</span>
</a>
<a href="home.html" class="bottom-nav-item">
<div class="bottom-nav-icon">🏠</div>
<span>Home</span>
</a>
<a href="profile.html" class="bottom-nav-item">
<div class="bottom-nav-icon">👤</div>
<span>Profile</span>
</a>
<a href="guidelines.html" class="bottom-nav-item">
<div class="bottom-nav-icon">📋</div>
<span>Guidelines</span>
</a>
</div>
</nav>
</body>
</html>