-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
633 lines (612 loc) · 24.4 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
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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="A bitcoin education wesbite" />
<meta name="keywords" content="bitcoin, BTC, education, learning" />
<meta name="author" content="Blake Kaufman" />
<link rel="stylesheet" href="./assets/css/index.css" />
<link rel="stylesheet" href="./assets/css/navbar.css" />
<link rel="stylesheet" href="./assets/css/hompage.css" />
<link
rel="shortcut icon"
href="./assets/images/bitconEducationLogo.png"
type="image/x-icon"
/>
<link rel="stylesheet" href="./assets/css/footer.css" />
<title>Bitlearn</title>
</head>
<body>
<nav>
<div class="nav-container-desktop">
<a href="index.html"
><div class="logo">
<img src="./assets/images/bitconEducationLogo.png" alt="Bitlearn" />
</div>
</a>
<ul class="navbar-links">
<li>
<!-- ///////////////// -->
<div class="nav-dropdown">
<div class="nav-dropdown">
<span> Resources </span>
<img
src="./assets/images/arrow-down-short.svg"
alt=""
srcset=""
/>
</div>
<!-- ///////////////// -->
<div class="dropdown-content">
<div class="content">
<div class="left">
<span class="title">Reasorces</span>
<div class="resorce-container">
<!-- ////////// -->
<a
href="./resource-page.php?resource=bitcoin-mining"
class="reasorce"
>
<span class="reasorce-title">Bitcoin Mining</span>
<span class="reasorce-description"
>View all reasorces positioned around bitcoin
mining</span
>
</a>
<!-- //////////// -->
<!-- ////////// -->
<a
href="./resource-page.php?resource=economics"
class="reasorce"
>
<span class="reasorce-title">Economics</span>
<span class="reasorce-description"
>View all reasorces positioned around the economics of
bitcoin</span
>
</a>
<!-- //////////// -->
<!-- ////////// -->
<a
href="./resource-page.php?resource=philosophy"
class="reasorce"
>
<span class="reasorce-title">Philosophy</span>
<span class="reasorce-description"
>View all reasorces positioned around the philosophy
of bitcoin</span
>
</a>
<!-- //////////// -->
<!-- ////////// -->
<a
href="./resource-page.php?resource=new-innovations"
class="reasorce"
>
<span class="reasorce-title">New Innovations</span>
<span class="reasorce-description"
>View all reasorces highlighting new innovations</span
>
</a>
<!-- //////////// -->
</div>
</div>
<div class="right">
<div class="right-container">
<span>All Reasorces</span>
<img
src="./assets/images/resources.png"
alt="icon for reasource page"
srcset=""
/>
<span class="description"
>View all of our reasorces today!</span
>
<a href="./all-resource-page.html">View Reasorces</a>
</div>
</div>
</div>
<!-- <li>Bitcoin Mining</li>
<li>Economics</li>
<li>Philosophy</li>
<li>Applications</li> -->
<!-- ///////////////// -->
</div>
</div>
<!-- ///////////////// -->
</li>
<!-- dropdown for courses, books, podcasts, twitter followers, etc -->
<li><a href="./under-construction.html">Pricing</a></li>
<li><a href="./fourm-page.php">Fourm</a></li>
<!-- custom content that we put out -->
<!-- <li><a href="./under-construction.html">Community</a></li> -->
<!-- Q and A section for users -->
<li><a href="./news-page.html">Current News</a></li>
</ul>
</div>
<div class="nav-container-mobile">
<div class="logo">
<a href="index.html"
><img src="./assets/images/bitconEducationLogo.png" alt="Bitlearn"
/></a>
</div>
<div class="login-signup">
<img
class="dropdown-BTN"
src="./assets/images/list.svg"
alt=""
srcset=""
/>
<!-- hamburger menu -->
</div>
</div>
<!-- mobile nav dropdown -->
<div class="mobile-nav-dropdown">
<ul class="navbar-links">
<li><a href="./all-resorces-page.html">Reasorces</a></li>
<!-- dropdown for courses, books, podcasts, twitter followers, etc -->
<li><a href="./under-construction.html">Pricing</a></li>
<li><a href="./fourm-page.php">Fourm</a></li>
<!-- custom content that we put out -->
<!-- <li><a href="./under-construction.html">Community</a></li> -->
<li><a href="./news-page.html">Current News</a></li>
<!-- Q and A section for users -->
</ul>
</div>
<div class="bitcoin-stats">
<ul class="stats-container">
<li class="price">
Price: <span class="info-container">754703</span>
</li>
<li class="percentChange">
24hr price change: <span class="info-container">754703</span>
</li>
<li class="market-cap">
Market Cap: <span class="info-container">754703</span>
</li>
<li class="volume">
Volume: <span class="info-container">754703</span>
</li>
<li class="blockheight">
Block Height: <span class="info-container">754703</span>
</li>
<li class="difficulty">
Difficulty: <span class="info-container">48.71T</span>
</li>
<li class="hashrate">
Hash Rate: <span class="info-container">43.64E/H</span>
</li>
<li class="nodecount">
Node Count: <span class="info-container">15,000</span>
</li>
<!-- <li class="lasthash">
Last Hash:
<span class="info-container">
0000000000000000000624d76f52661d0f35a0da8b93a87cb93cf08fd9140209</span
>
</li> -->
</ul>
</div>
</nav>
<main>
<section class="main-content">
<h1>
Your Learning. Your Expirence. Your Community. Build Them On Bitlearn
</h1>
<p>
Join the Bitcoin Revolution with Our Ultimate Resource for Learning,
Communicating, and Growing Your Community.
</p>
<!-- <button class="CTA-btn-main-content">Create Your Free Account</button> -->
<!-- background Image -->
<img
class="main-content-back"
src="./assets/images/home-chart-desktop.svg"
alt=""
srcset=""
/>
</section>
<!-- ////////////// -->
<section class="our-services">
<div class="main-text">
<h1>
Learning about bitcoin can be tough. Leave the gathering of
information to us, to make your jouney eaiser.
</h1>
<p>
You should not have to spend your time finding out what to reaserch,
who to listen to, or what to belive. [Company Name] puts together
curated information to eliviate the joney to understanding bitcoin.
</p>
</div>
<!-- showing our services off -->
<div class="services">
<!-- first container-->
<div class="service-container">
<div class="text">
<span class="service-kind">Resorces</span>
<span class="service-title"
>Easily learn about bitcoin though our wide variety of
articles</span
>
<span class="service-description"
>Get started in minutes. Bitlearn handles all the information
consolidation, just click and article and you're good to
go!</span
>
<!-- ////////// -->
<div class="service-info-drop">
<div class="drop-info-container">
<!-- ///////////// -->
<div class="drop-info">
<div class="title">
<span> Who writes the articles? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Anyone! To prevent agaist spam there is a $5 fee to put
your article on our page. But, if you have something to
add to the conversation anyone is welcome to join.</span
>
<div class="screen"></div>
</div>
<!-- //////////// -->
<div class="drop-info">
<div class="title">
<span> Where can I find the articels? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Go to the resorce text in the nav bar, hover over to see
the dropdown and click which topic you want to learn more
about.</span
>
<div class="screen"></div>
</div>
<!-- //////////// -->
<div class="drop-info">
<div class="title">
<span>How can I write an article? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Go to the resource dropdown in the nav. Then, either
click one of the resources on the left or all resources on
the right. After you click one of the options you should
see a button that says "add resource" and your're good to
go!</span
>
<div class="screen"></div>
</div>
<!-- //////////// -->
</div>
</div>
<!-- //////////// -->
<a href="./all-resource-page.html" class="see-more-BTN">
<span>Let's Learn</span>
<img src="./assets/images/arrow-right-short.svg" alt=""
/></a>
</div>
<div class="img">
<img
src="./assets/images/articelsVectorImage.jpeg"
alt="Image of an article to give perspective on what this section is about"
srcset=""
/>
</div>
</div>
<!-- first container-->
<!-- second container-->
<div class="service-container">
<div class="text">
<span class="service-kind">Forum</span>
<span class="service-title"
>Join the conversation by posting comments and questions.</span
>
<span class="service-description"
>All you have to do is fill out the form, pay the lightning
invioce, and your post is on the internet!</span
>
<!-- ////////// -->
<div class="service-info-drop">
<div class="drop-info-container">
<!-- ///////////// -->
<div class="drop-info">
<div class="title">
<span> Why is a payment required? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>In order to help stop the ability for large bot attacks
and to varify you are a person, we are using micropayments
over the lightning network.</span
>
<div class="screen"></div>
</div>
<!-- //////////// -->
<div class="drop-info">
<div class="title">
<span> Can I see when people comment on my post </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Since we are not collecting any user information you are
not able to tell if someone comments on your post.
</span>
<div class="screen"></div>
</div>
<!-- //////////// -->
<div class="drop-info">
<div class="title">
<span> What is the currency being used? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Since Bitlearn is a bitcoin only education platform we
are using the lightning network(layer 2) on bitcoin to
recive payments</span
>
<div class="screen"></div>
</div>
<!-- //////////// -->
</div>
</div>
<!-- //////////// -->
<a href="./fourm-page.php" class="see-more-BTN">
<span>Join the conversation</span>
<img src="./assets/images/arrow-right-short.svg" alt=""
/></a>
</div>
<div class="img">
<img
src="./assets/images/forumVectorImage.jpeg"
alt="Image of a group of people to give perspective on what this section is about"
srcset=""
/>
</div>
</div>
<!-- second container-->
<!-- third container-->
<div class="service-container">
<div class="text">
<span class="service-kind">Current News</span>
<span class="service-title"
>Don't skip a best in the bitcoin industy</span
>
<span class="service-description"
>Bitcion is changing everyday so never miss an important event
using our current news page!</span
>
<!-- ////////// -->
<div class="service-info-drop">
<div class="drop-info-container">
<!-- ///////////// -->
<div class="drop-info">
<div class="title">
<span>Can I chose what to see? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>You can select from our 4 main presets. After that you
can clear those and use the search bar to find what you
want.</span
>
<div class="screen"></div>
</div>
<!-- //////////// -->
<div class="drop-info">
<div class="title">
<span> How are the articles found? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Bitlearn uses an api that has access to all headlines
across the web. However, we filter only for the most
popular news sites in order to limit junk articels.
</span>
<div class="screen"></div>
</div>
<!-- //////////// -->
<!-- <div class="drop-info">
<div class="title">
<span> How are the courses made? </span
><img
src="./assets/images/plus-lg.svg"
alt=""
srcset=""
/>
</div>
<span class="content"
>Lorem ipsum dolor sit amet consectetur, adipisicing elit.
Repudiandae maiores atque excepturi. Impedit, numquam
voluptatibus. Quasi aut laborum minima itaque iusto ipsam,
numquam cupiditate obcaecati reprehenderit illum labore,
id quod.</span
>
<div class="screen"></div>
</div> -->
<!-- //////////// -->
</div>
</div>
<!-- //////////// -->
<a href="./news-page.html" class="see-more-BTN">
<span>Get news</span>
<img src="./assets/images/arrow-right-short.svg" alt=""
/></a>
</div>
<div class="img">
<img
src="./assets/images/newsVectorImage.jpeg"
alt="Image of a news paper to give perspective on what this section is about"
srcset=""
/>
</div>
</div>
<!-- third container-->
</div>
</section>
<!-- ///////////////// -->
<section class="what-we-believe">
<div class="what-we-believe-container">
<div class="right">
<span class="main">
We believe learning should be simple and its impact should be big.
</span>
<span class="description"
>Let’s make that a reality for you. Here’s how.</span
>
</div>
<div class="options">
<!-- //////// -->
<div class="option">
<div class="top">
<img src="./assets/images/check.png" alt="" />
<span class="title">Put the learner first</span>
</div>
<span class="bottom"
>At Bitlearn we belive that all voices should be heard. That is
why our resources are generated by the community. Be sure to
think critically when reading them as anyone can post.
</span>
<a href="./all-resource-page.html"><div class="screen"></div></a>
</div>
<!-- //////// -->
<!-- //////// -->
<div class="option">
<div class="top">
<img src="./assets/images/check.png" alt="" />
<span class="title">Consolidate information</span>
</div>
<span class="bottom"
>Let's face it, it's hard to learn about bitcoin. But, luckily
for you we have created a bitcoin only website to help you get
started. From blog posts, to resources and news, Bitlearn is
your one stop shop.</span
>
<a href="./all-resource-page.html"><div class="screen"></div></a>
</div>
<!-- //////// -->
<!-- //////// -->
<div class="option">
<div class="top">
<img src="./assets/images/check.png" alt="" />
<span class="title">Drive results through community</span>
</div>
<span class="bottom"
>Conversations are everything when it comes to learning. Hop
into the fourm page, learn how to use the lightning network to
pay your post fee, and join the conversation.</span
>
<a href="./fourm-page.php"><div class="screen"></div></a>
</div>
<!-- //////// -->
</div>
</div>
<!-- ///////// -->
<div class="moving-ball"></div>
<!-- ///////// -->
</section>
<section class="call-to-action-bottom">
<div class="title">
Start your learning jouney today on what impacts the world
</div>
<span class="call-to-action-BTN">Sign up for free</span>
</section>
</main>
<footer>
<div class="footer-container">
<div class="logo">
<a href="index.html"
><img src="./assets/images/bitconEducationLogo.png" alt="Bitlearn"
/></a>
</div>
<div class="to-questions list-container">
<span class="title"> Bitlearn </span>
<ul class="footer-list">
<li class="footer-item">
<a href="./fourm-page.php">Questoins</a>
</li>
<li class="footer-item"><a href="./news-page.html">News</a></li>
<li class="footer-item">
<a href="./under-construction.html">Education</a>
</li>
<li class="footer-item">
<a href="./fourm-page.php">Fourm</a>
</li>
</ul>
</div>
<div class="company list-container">
<span class="title"> Company </span>
<ul class="footer-list">
<li class="footer-item">
<a href="./company-pages/about-us.html">About</a>
</li>
<li class="footer-item"><a href="./help.html">Help</a></li>
<li class="footer-item">
<a href="./under-construction.html">Privacy Policy</a>
</li>
<li class="footer-item">
<a href="./under-construction.html">Terms of Service</a>
</li>
<li class="footer-item">
<a href="./under-construction.html">Privacy Polict</a>
</li>
</ul>
</div>
<div class="social list-container">
<div class="top">
<ul class="social-list">
<li><a href="#">Facebook</a></li>
<li><a href="#">Twitter</a></li>
<li><a href="#">Linkedin</a></li>
<li><a href="#">Instagram</a></li>
</ul>
</div>
<div class="bottom">
<span>Copyright © 2023 Bitlearn All rights reserved.</span>
</div>
</div>
</div>
</footer>
<script src="https://mempool.space/mempool.js"></script>
<script src="./javaScript/navbar.js"></script>
<script src="./javaScript/moving-ball.js"></script>
<script src="./javaScript/changing-main-back-img.js"></script>
<script src="./javaScript/what-we-belive.js"></script>
<script src="./javaScript/our-services-content-display.js"></script>
</body>
</html>