-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1041 lines (930 loc) · 56.4 KB
/
index.html
File metadata and controls
1041 lines (930 loc) · 56.4 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
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
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!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 property="og:title" content="JavaScript algorithms" />
<meta property="og:url" content="https://www.js-algorithms.com" />
<meta property="og:author" content="Pia Torain" />
<meta property="og:image" content="/https://i.ibb.co/28RKqV7/jsAlgos.png" />
<meta property="og:description" content="JavaScipt Algorithms Dashboard" />
<meta content="summary_large_image" name="twitter:card" />
<meta content="JavaScript Algorithms" name="twitter:title" />
<meta content="Interactive JavaScript Algorithm Dashboards" name="twitter:description" />
<meta content="https://i.ibb.co/28RKqV7/jsAlgos.png" name="twitter:image" />
<link rel="canonical" href="https://www.js-algorithms.com" />
<link rel="icon" href="/js.ico"/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Rubik:wght@400;500;600;700&display=swap" rel="stylesheet">
<link href='https://unpkg.com/boxicons@2.0.9/css/boxicons.min.css' rel='stylesheet'>
<script src="https://unpkg.com/boxicons@2.0.9/dist/boxicons.js"></script>
<script src="https://kit.fontawesome.com/9794dd2b19.js" crossorigin="anonymous"></script>
<link rel="stylesheet" href="assets/css/styles.css" />
<title>JavaScript Algorithm Interactive Dashboards| Pia Torain</title>
</head>
<body>
<!-- HEADER -->
<header>
<div class="header-info-holder">
<div class="hd-content">
<div class="hd-holder hd-btn-holder">
<button class="header-btn" id="info-btn" aria-label="info-button">
<i class="fas fa-info header-info" name='info' id="info-icon"></i>
</button>
</div>
<div class="hd-holder hd-title-holder">
<p id="header-title" class="hd-title">JavaScript Algorithms</p>
<p id="mb-header-title" class="hd-title">JS Algos</p>
</div>
<div class="hd-holder clock-holder">
<div id="clock" class="hd-clock"></div>
</div>
</div>
</div>
</header>
<!-- /HEADER -->
<!-- MAIN CONTENT -->
<div class="dash-holder" id="dashboard-holder">
<!-- INFORMATION -->
<div class="information" id="info-dash">
<div class="info-home-btn-holder">
<button id="info-btn-close" class="btn-home info-home" aria-label="home">
<box-icon name='home' class="icon-home info-home-icon"></box-icon>
</button>
</div>
<div class="info-content">
<h2 class="subtitle">
What is a Javascript Algorithm?
</h2>
<p class="info-text">
JavaScript(JS) is a popular scripting language that is used to create interactive web pages. There is much more to JS,
but, for the purpose of this site, I am going to stop right there. An algorithm
is a set of instructions or steps that are executed in a certain order to accomplish a specific task.
Thus, a JavaScript algorithm is a set of instructions written in JavaScript.
</p>
<h2 class="subtitle">
Why I made this site?
</h2>
<p class="info-text">
As a Frontend Developer, actually a brand new one, having a solid understanding of JavaScript is crucial.
JS is the core programming language. There is no way to avoid it, plain and simple. However,
it is not always easy to grasp. In fact, like all programming languages, the learning process is ongoing. And, the more
you practice, the more you learn. The idea for this site was born out of weekly coding challenges hosted by the bootcamp
that I was enrolled in. I started accompanying each challenge with a simple dashboard that would help me to learn, improve and visualize
how the algorithm would work. Then, I started brainstorming about the functionality, aesthetics and accessibility of the dashboard. And then it was live!
</p>
<h2 class="subtitle">
How to Use this Site?
</h2>
<p class="info-text">
If you are reading this, you have already found the "info" button.
</p>
<h3 class="info-subtitle">
Cards
</h3>
<p class="info-text">
The landing page has a series of cards. Each card represents an algorithm.
The level of difficulty is indicated by a battery icon in the lower left corner.
A battery that is 3/4 full represents an easy algorithm. While a 1/2 full battery indicates an intermediate/medium difficulty. A 1/4 full and an empty battery represent hard and advanced; respectively. As of now, I have only implemented easy and medium algorithms.
Each card has a "play" button in the lower right corner that opens an interactive dashboard.
<div class="info-img-holder">
<img src="assets/images/sample-cd.png" alt="sample card image" class="sample-image card-img" />
</div>
</p>
<h3 class="info-subtitle">
Dashboard
</h3>
<p class="info-text">
Each dashboard has a home button, a simple instruction, user input fields,
and a button to run the algorithm. The inputs automatically reset 2.5 - 5 seconds after the algorithm runs. On the right side of the dashboard, in the desktop view,
a pdf file of the algorithm is displayed. At the bottom of the pdf, there is a button
that will download the pdf file. In the mobile view, the pdf file is note displayed.
</p>
<div class="info-img-holder">
<img src="assets/images/sample-dash.png" alt="sample dashboard image" class="sample-image dash-img" />
</div>
<h2 class="subtitle">
Resources
</h2>
<ul class="resources-list">
<li class="resources-item">
Bootcamp:
<a class="resources-links" href="https://www.reskillamericans.org/" alt="link to Reskill Ammericans Bootcamp">Reskill Americans</a>
&
<a class="resources-links" href="https://www.freeCodeCamp.org/" alt="link to free code camp Bootcamp">freeCodeCamp</a>
</li>
<li class="resources-item">
Challenges:
<a class="resources-links" href="https://www.leetcode.com/" alt="link to LeetCode coding challenges">LeetCode</a>
&
<a class="resources-links" href="https://www.codewars.com/" alt="link to LeetCode coding challenges">CodeWars</a>
</li>
<li class="resources-item">
Tutorials:
<a class="resources-links" href="https://www.w3schools.com/" alt="link to MDN WEB DOCS">w3Schools</a>
&
<a class="resources-links" href="https://developer.mozilla.org/en-US/" alt="link to W 3 SCHOOLS">MDN Web Docs</a>
</li>
</ul>
</div>
</div>
<!-- /INFORMATION -->
<!-- GRID CARDS -->
<div class="dash-grid-holder" id="dg-holder">
<div class="dashboard" id="dash">
<!-- Isogram Card -->
<div class="algo-card iso">
<div class="algo-info">
<div class="title">
<h3 class="title">ISOGRAM</h3>
</div>
<div class="algo-text">
<p class="text-info">Is there only one instance of each letter in your word?</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label='easy' >
<i class="fas fa-battery-three-quarters iso" ></i>
</button>
<button class="btn-play iso-btn-play" id="iso-play-btn" aria-label="play">
<i class="fas fa-play iso-play"></i>
</button>
</div>
</div>
<!-- /Isogram Card-->
<!-- Palindrome Card-->
<div class="algo-card pal">
<div class="algo-info">
<div class="title">
<h3 class="title">PALINDROME</h3>
</div>
<div class="algo-info">
<p class="text-info">Is your word/s a palindrome?</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="easy">
<i class="fas fa-battery-three-quarters pal"></i>
</button>
<button class="btn-play pal-btn-play" id="pal-play-btn" aria-label="play">
<i class="fas fa-play pal-play"></i>
</button>
</div>
</div>
<!-- /Palindrome Card-->
<!-- Two Sum Card-->
<div class="algo-card two">
<div class="algo-info">
<div class="title">
<h3 class="title">TWO SUM</h3>
</div>
<div class="algo-info">
<p class="text-info">Are there two numbers whose sum is the target number? </p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="easy">
<i class="fas fa-battery-three-quarters two"></i>
</button>
<button class="btn-play two-btn-play" id="two-play-btn" aria-label="play">
<i class="fas fa-play two-play"></i>
</button>
</div>
</div>
<!-- /Two Sum Card-->
<!-- SpinWords Card-->
<div class="algo-card spin">
<div class="algo-info">
<div class="title">
<h3 class="title">SPIN WORDS</h3>
</div>
<div class="algo-info">
<p class="text-info">See what happens when you decide which words will be reversed.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="easy">
<i class="fas fa-battery-three-quarters spin"></i>
</button>
<button class="btn-play spin-btn-play" id="spin-play-btn" aria-label="play">
<i class="fas fa-play spin-play"></i>
</button>
</div>
</div>
<!-- /SpinWords Card-->
<!-- Length of Longest Word Card-->
<div class="algo-card llw">
<div class="algo-info">
<div class="title">
<h3 class="title">LENGTH OF LONGEST WORD</h3>
</div>
<div class="algo-info">
<p class="text-info">Find out which word is the longest and its length.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="easy">
<i class="fas fa-battery-three-quarters llw"></i>
</button>
<button class="btn-play llw-btn-play" id="llw-play-btn" aria-label="play">
<i class="fas fa-play llw-play"></i>
</button>
</div>
</div>
<!-- /Length of Longest Word Card-->
<!-- Factorialize Card-->
<div class="algo-card fact">
<div class="algo-info">
<div class="title">
<h3 class="title">FACTORIALIZE</h3>
</div>
<div class="algo-info">
<p class="text-info">Get the factorial(!n) of a positive integer.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="easy">
<i class="fas fa-battery-three-quarters fact"></i>
</button>
<button class="btn-play fact-btn-play" id="fact-play-btn" aria-label="play">
<i class="fas fa-play fact-play"></i>
</button>
</div>
</div>
<!-- /Factorialize Card-->
<!-- Palindrome Number Card-->
<div class="algo-card pn">
<div class="algo-info">
<div class="title">
<h3 class="title">PALINDROME NUMBER</h3>
</div>
<div class="algo-info">
<p class="text-info">Check to see if a number is a palidrome.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="easy">
<i class="fas fa-battery-three-quarters pn"></i>
</button>
<button class="btn-play pn-btn-play" id="pn-play-btn" aria-label="play">
<i class="fas fa-play pn-play"></i>
</button>
</div>
</div>
<!-- /Palindrome Number Card-->
<!-- Reverse An Integer Card-->
<div class="algo-card rev">
<div class="algo-info">
<div class="title">
<h3 class="title">REVERSE AN INTEGER</h3>
</div>
<div class="algo-info">
<p class="text-info">Reverse an integer and maintain it's relation to 0. </p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="medium">
<i class="fas fa-battery-half rev"></i>
</button>
<button class="btn-play rev-btn-play" id="rev-play-btn" aria-label="play">
<i class="fas fa-play rev-play"></i>
</button>
</div>
</div>
<!-- /Reverse An Integer Card -->
<!-- Longest Non-Repeating Substring Card-->
<div class="algo-card lnr">
<div class="algo-info">
<div class="title">
<h3 class="title">LONGEST NON-REPEATING SUBSTRING</h3>
</div>
<div class="algo-info">
<p class="text-info">Get the longest unique substring and its length.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="medium">
<i class="fas fa-battery-half lnr"></i>
</button>
<button class="btn-play lnr-btn-play" id="lnr-play-btn" aria-label="play">
<i class="fas fa-play lnr-play"></i>
</button>
</div>
</div>
<!-- /Longest Non-Repeating Substring Card-->
<!-- Reverse A Word in a String Card-->
<div class="algo-card rw">
<div class="algo-info">
<div class="title">
<h3 class="title">REVERSE THE WORDS</h3>
</div>
<div class="algo-info">
<p class="text-info">Reverse the order of words in a string</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="medium">
<i class="fas fa-battery-half rw"></i>
</button>
<button class="btn-play rw-btn-play" id="rw-play-btn" aria-label="play">
<i class="fas fa-play rw-play"></i>
</button>
</div>
</div>
<!-- /Reverse A Word in a String Card-->
<!-- Sum All in Range -->
<div class="algo-card sum-all">
<div class="algo-info">
<div class="title">
<h3 class="title">SUM ALL</h3>
</div>
<div class="algo-info">
<p class="text-info">Get the sum of two numbers and of the number between them.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="medium">
<i class="fas fa-battery-half sum-all"></i>
</button>
<button class="btn-play sum-all-btn-play" id="sum-all-play-btn" aria-label="play">
<i class="fas fa-play sum-all-play"></i>
</button>
</div>
</div>
<!-- /Sum All in Range Card-->
<!-- To Roman and Back Card-->
<div class="algo-card rome">
<div class="algo-info">
<div class="title">
<h3 class="title">TO ROME & BACK</h3>
</div>
<div class="algo-info">
<p class="text-info">Convert a Roman Numeral to an integer or vice versa.</p>
</div>
</div>
<div class="btn-holder">
<button class="level" aria-label="medium">
<i class="fas fa-battery-half rome"></i>
</button>
<button class="btn-play rome-btn-play" id="rome-play-btn" aria-label="play">
<i class="fas fa-play rome-play"></i>
</button>
</div>
</div>
<!-- /To Roman and Back Card-->
</div>
</div>
<!-- /GRID CARDS-->
<!-- ALGORITHMS -->
<div class="algo-dash-holder" id="algo-dash">
<!-- Isogram Dashboard -->
<div id="iso-container" class="container iso-container">
<div class="home-btn-holder">
<button id="iso-btn-close" class="btn-home iso-home" aria-label="home">
<box-icon name='home' class="icon-home iso-home-icon"></box-icon>
</button>
</div>
<div class="window-holder iso-window-holder">
<div class="window iso-window">
<form id="form" class="iso-form">
<p class="intro iso-intro">
Is it an isogram?
</p>
<!-- INPUT FIELD -->
<div class="input-holder iso-input-holder">
<!-- USER INPUT -->
<input id="isogramText" class="text-field iso-text-field" name="isogramText" type="text" placeholder="Enter Text Here" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSES BASED ON CRITERIA EVALUATION -->
<p id="eval" class="evals isoEval"></p>
<!-- /RESPONSES BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="check-input" class="btn-check iso-btn-check" type="submit" >CHECK IT!</button>
<!-- /SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder iso-pdf">
<div class="pdf-content iso-pdf-content">
<iframe src="assets/pdf/isogram.pdf#view=fitH&scrollbar=1&toolbar=1" class="pdf-frame iso-pdf-frame" title="Isogram" type="application/pdf" ></iframe>
<div class="download-holder iso-download-holder" id="iso-download-holder">
<button class="btn-dl iso-btn iso-pdf-btn" id="iso-pdf-download-btn" aria-label="download" type="button">
<a class="dl-link" href="assets/pdf/isogram.pdf" download="isogram.pdf" alt="download isogram file">
<box-icon name='download' class="icon download iso-dl" id="iso-download"></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Isogram Dashboard -->
<!-- Palindrome Dashboard -->
<div id="palindrome" class="container pal-container">
<div class="home-btn-holder">
<button id="pal-btn-close" class="btn-home pal-home" aria-label="home">
<box-icon name='home' class="icon-home pal-home-icon"></box-icon>
</button>
</div>
<div class="window-holder pal-window-holder">
<div class="window pal-window">
<form id="pal-form" class="pal-form">
<p class="intro pal-intro">
Enter a word or sentence to see if it's a palindrome.
</p>
<!-- INPUT FIELD -->
<div class="input-holder pal-input-holder">
<!-- USER INPUT -->
<input id="pal-text" class="text-field pal-text-field" name="pal-text" type="text" placeholder="Enter text here" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="palResponse" class="evals palEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="pal-check-string" class="btn-check pal-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder pal-pdf">
<div class="pdf-content pal-pdf-content">
<iframe src="assets/pdf/palindrome.pdf#view=fitH&scrollbar=1&toolbar=1" id="pal-pdf-frame" class="pdf-frame pal-pdf-frame" title="Palindrome" ></iframe>
<div class="download-holder pal-download-holder">
<button class="btn-dl pal-btn pal-pdf-btn" id="pal-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/palindrome.pdf" download="palindrome.pdf" alt="download palindrome file">
<box-icon id="pal-download" name='download' class="icon download pal-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Palindrome Dashboard -->
<!-- Two Sum Dashboard -->
<div id="two-sum" class="container ts-container">
<div class="home-btn-holder">
<button id="ts-btn-close" class="btn-home two-home" aria-label="home">
<box-icon name='home' class="icon-home ts-home-icon"></box-icon>
</button>
</div>
<div class="window-holder two-window-holder">
<div class="window two-window">
<form id="ts-form" class="two-form">
<p class="intro ts-intro">
Any two numbers in your array equal your target number.
</p>
<!-- INPUT FIELD -->
<div class="input-holder ts-input-holder">
<!-- USER INPUT -->
<div class="two-nums">
<input id="randomNumbers" class="text-field ts-text-field " name="randomNumbers" type="text" placeholder="Ex: 4 5 6 28 300" autocomplete= "off" aria-label="numbers"/>
</div>
<div class="two-target">
<input id="targetNumber" class="text-field ts-text-field " name="targetNumbers" type="text" placeholder="Ex: 10" autocomplete= "off" aria-label="target number"/>
</div>
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="sumResponse" class="evals sumEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="check-sum" class="btn-check ts-btn-check" type="submit" >CHECK IT!</button>
<!-- <button id="reset-form" class="ts-btn-reset" type="submit" >RESET!</button> -->
</form>
</div>
<div class="pdf-holder ts-pdf">
<div class="pdf-content ts-pdf-content">
<iframe src="assets/pdf/two-sum.pdf#view=fitH&scrollbar=1&toolbar=1" id="ts-pdf-frame" class="pdf-frame ts-pdf-frame" title="Two Sum" ></iframe>
<div class="download-holder ts-download-holder">
<button class="btn-dl ts-btn ts-pdf-btn" id="ts-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/two-sum.pdf" download="two-sum.pdf" alt="download two some file">
<box-icon id="ts-pdf-download" name='download' class="icon download ts-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Two Sum Dashboard -->
<!-- Spin Words Dashboard -->
<div id="spin-words" class="container spin-container">
<div class="home-btn-holder">
<button id="spin-btn-close" class="btn-home sw-home" aria-label="home">
<box-icon name='home' class="icon-home sw-home-icon"></box-icon>
</button>
</div>
<div class="window-holder spin-window-holder">
<div class="window spin-window">
<form id="sw-form" class="sw-form">
<p class="intro sw-intro">
Spin words that are longer than or equal to your number.
</p>
<!-- INPUT FIELD -->
<div class="input-holder sw-input-holder">
<!-- USER INPUT -->
<div class="sw-words">
<input id="sw-text" class="text-field sw-text-field" name="sw-text" type="text" placeholder="Enter text here" autocomplete= "off" />
</div>
<div class="sw-num">
<input id="sw-num" class="text-field sw-text-field" name="sw-num" type="text" placeholder="Ex: 5 " autocomplete= "off" />
</div>
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="swResponse" class="evals swEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="sw-spin" class="btn-check sw-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder sw-pdf">
<div class="pdf-content sw-pdf-content">
<iframe id="sw-pdf-frame" class="pdf-frame sw-pdf-frame" title="Spin Words" src="assets/pdf/spinwords.pdf#view=fitH&scrollbar=1&toolbar=1"></iframe>
<div class="download-holder sw-download-holder">
<button class="btn-dl sw-btn sw-pdf-btn" id="sw-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/spinwords.pdf" download="spinwords.pdf" alt="download spin words file">
<box-icon id="sw-pdf-download" name='download' class="icon download sw-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Spin Words Dashboard -->
<!-- Length of Longest Word Dashboard -->
<div id="longest-word" class="container lw-container">
<div class="home-btn-holder">
<button id="lw-btn-close" class="btn-home lw-home" aria-label="home">
<box-icon name='home' class="icon-home lw-home-icon"></box-icon>
</button>
</div>
<div class="window-holder lw-window-holder">
<div class="window lw-window">
<form id="lw-form" class="lw-form">
<p class="intro lw-intro">
Longest word in your sentence?
</p>
<!-- INPUT FIELD -->
<div class="input-holder lw-input-holder">
<!-- USER INPUT -->
<input id="lw-text" class="text-field lw-text-field" name="lw-text" type="text" placeholder="Enter text here" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="lwResponse" class="evals lwEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="lw-check-string" class="btn-check lw-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder lw-pdf">
<div class="pdf-content lw-pdf-content">
<iframe id="lw-pdf-frame" class="pdf-frame lw-pdf-frame" title="Length of the longest word" src="assets/pdf/longest-length-word.pdf#view=fitH&scrollbar=1&toolbar=1"></iframe>
<div class="download-holder lw-download-holder">
<button class="btn-dl lw-btn lw-pdf-btn" id="lw-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/longest-length-word.pdf" download="longest-length-word.pdf" alt="download length of longest word file">
<box-icon id="lw-pdf-download" name='download' class="icon download lw-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Length of Longest Word Dashboard -->
<!-- Factorialize a Number Dashboard -->
<div id="factorialize" class="container fact-container">
<div class="home-btn-holder">
<button id="fact-btn-close" class="btn-home fact-home" aria-label="home">
<box-icon name='home' class="icon-home fact-home-icon"></box-icon>
</button>
</div>
<div class="window-holder fact-window-holder">
<div class="window fact-window">
<form id="fact-form" class="fact-form">
<p class="intro fact-intro">
Enter a positive integer.
</p>
<!-- INPUT FIELD -->
<div class="input-holder fact-input-holder">
<!-- USER INPUT -->
<input id="fact-text" class="text-field fact-text-field" name="fact-text" type="text" placeholder="Ex: 2" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="factResponse" class="evals factEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="fact-btn" class="btn-check fact-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder fact-pdf">
<div class="pdf-content fact-pdf-content">
<iframe id="fact-pdf-frame" class="pdf-frame fact-pdf-frame" title="Factorialize" src="assets/pdf/fact.pdf#view=fitH&scrollbar=1&toolbar=1"></iframe>
<div class="download-holder fact-download-holder">
<button class="btn-dl fact-btn fact-pdf-btn" id="fact-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/fact.pdf" download="fact.pdf" alt="download factorialize file">
<box-icon id="fact-pdf-download" name='download' class="icon download fact-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Factorialize a Number Dashboard -->
<!-- Palindrome Number Dashboard -->
<div id="pal-num" class="container pn-container">
<div class="home-btn-holder">
<button id="pn-btn-close" class="btn-home pn-home" aria-label="home">
<box-icon name='home' class="icon-home pn-home-icon"></box-icon>
</button>
</div>
<div class="window-holder pn-window-holder">
<div class="window pn-window">
<form id="pn-form" class="pn-form">
<p class="intro pn-intro">
Palindrome Number?
</p>
<!-- INPUT FIELD -->
<div class="input-holder pn-input-holder">
<!-- USER INPUT -->
<input id="pn-text" class="text-field pn-text-field" name="pn-text" type="text" placeholder="Ex: 121" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="pnResponse" class="evals pnEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="pn-btn" class="btn-check pn-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder pn-pdf">
<div class="pdf-content pn-pdf-content">
<iframe id="pn-pdf-frame" class="pdf-frame pn-pdf-frame" title="Palindrome Number" src="assets/pdf/palindrome-num.pdf#view=fitH&scrollbar=1&toolbar=1"></iframe>
<div class="download-holder pn-download-holder">
<button class="btn-dl pn-btn pn-pdf-btn" id="pn-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/palindrome-num.pdf" download="palindrome-num.pdf" alt="download palindrome number file">
<box-icon id="pn-pdf-download" name='download' class="icon download pn-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Palindrome Number Dashboard -->
<!-- Reverse an Integer Dashboard -->
<div id="reverse-int" class="container rev-int-container">
<div class="home-btn-holder">
<button id="rev-int-btn-close" class="btn-home rev-int-home" aria-label="home">
<box-icon name='home' class="icon-home rev-int-home-icon"></box-icon>
</button>
</div>
<div class="window-holder rev-int-window-holder">
<div class="window rev-int-window">
<form id="rev-int-form" class="rev-int-form">
<p class="intro rev-int-intro">
Reverse an integer.
</p>
<!-- INPUT FIELD -->
<div class="input-holder rev-int-input-holder">
<!-- USER INPUT -->
<input id="rev-int-text" class="text-field rev-int-text-field" name="rev-int-text" type="text" placeholder="Ex: 254" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="revResponse" class="evals revEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="rev-int-btn" class="btn-check rev-int-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder rev-int-pdf">
<div class="pdf-content rev-int-pdf-content">
<iframe id="rev-int-pdf-frame" class="pdf-frame rev-int-pdf-frame" title="Reverse an Integer" src="assets/pdf/reverse-int.pdf#view=fitH&scrollbar=1&toolbar=1" ></iframe>
<div class="download-holder rev-int-download-holder">
<button class="btn-dl rev-int-btn rev-int-pdf-btn" id="rev-int-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/reverse-int.pdf" download="reverse-int.pdf" alt="download reverse integer file">
<box-icon id="rev-int-pdf-download" name='download' class="icon download rev-int-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Reverse an Integer Dashboard -->
<!-- Longest Non-Repeating Substring Dashboard -->
<div id="lnr" class="container lnr-container">
<div class="home-btn-holder">
<button id="lnr-btn-close" class="btn-home lnr-home" aria-label="home">
<box-icon name='home' class="icon-home lnr-home-icon"></box-icon>
</button>
</div>
<div class="window-holder lnr-window-holder">
<div class="window lnr-window">
<form id="lns-form" class="lns-form">
<p class="intro lns-intro">
Find the longest non-repeating substring.
</p>
<!-- INPUT FIELD -->
<div class="input-holder lns-input-holder">
<!-- USER INPUT -->
<input id="lns-text" class="text-field lns-text-field" name="lns-text" type="text" placeholder="Ex: lokijgud" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="lnsResponse" class="evals lnsEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="lns-btn" class="btn-check lns-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder lns-pdf">
<div class="pdf-content lns-pdf-content">
<iframe id="lns-pdf-frame" class="pdf-frame lns-pdf-frame" title="Longest non-repeating substring" src="assets/pdf/longest-non-repeating.pdf#view=fitH&scrollbar=1&toolbar=1" ></iframe>
<div class="download-holder lns-download-holder">
<button class="btn-dl lns-btn lns-pdf-btn" id="lns-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/longest-non-repeating.pdf" download="longest-non-repeating.pdf" alt="download longest non-repeating substring file">
<box-icon id="lns-pdf-download" name='download' class="icon download lns-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Longest Non-Repeating Substring Dashboard-->
<!-- Reverse A Word in a String Dashboard -->
<div id="rev-word" class="container rev-word-container">
<div class="home-btn-holder">
<button id="rev-word-btn-close" class="btn-home rev-word-home" aria-label="home">
<box-icon name='home' class="icon-home rev-word-home-icon"></box-icon>
</button>
</div>
<div class="window-holder rw-window-holder">
<div class="window rw-window">
<form id="rev-word-form" class="rev-word-form">
<p class="intro rev-word-intro">
Reverse word/s in a string.
</p>
<!-- INPUT FIELD -->
<div class="input-holder rev-word-input-holder">
<!-- USER INPUT -->
<input id="rev-word-text" class="text-field rev-word-text-field" name="rev-word-text" type="text" placeholder="Ex: These are words" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="revWordResponse" class="evals revWordEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="rev-word-btn" class="btn-check rev-word-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder rev-word-pdf">
<div class="pdf-content rev-word-pdf-content">
<iframe id="ref-word-pdf-frame" class="pdf-frame rev-word-pdf-frame" title="Reverse Words" src="assets/pdf/reverse-words.pdf#view=fitH&scrollbar=1&toolbar=1" ></iframe>
<div class="download-holder rev-word-download-holder">
<button class="btn-dl rev-word-btn rev-word-pdf-btn" id="rev-word-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/reverse-words.pdf" download="reverse-words.pdf" alt="download reverse words in a string file">
<box-icon id="rev-word-pdf-download" name='download' class="icon download rev-word-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Reverse A Word in a String Dashboard -->
<!-- Sum All in Range Dashboard -->
<div id="sm-all" class="container sm-all-container">
<div class="home-btn-holder">
<button id="sm-all-btn-close" class="btn-home sm-all-home" aria-label="home">
<box-icon name='home' class="icon-home sm-all-home-icon"></box-icon>
</button>
</div>
<div class="window-holder sum-all-window-holder">
<div class="window sm-all-window">
<form id="sm-all-form" class="sm-all-form">
<p class="intro sm-all-intro">
Enter two numbers to sum their range.
</p>
<!-- INPUT FIELD -->
<div class="input-holder sm-all-input-holder">
<!-- USER INPUT -->
<input id="sm-all-text" class="text-field sm-all-text-field" name="sm-all-text" type="text" placeholder="Ex: 5 11" autocomplete= "off" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="sumAllResponse" class="evals sumAllEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="sm-all-btn" class="btn-check sm-all-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder sm-all-pdf">
<div class="pdf-content sm-all-pdf-content">
<iframe id="sm-all-pdf-frame" class="pdf-frame sm-all-pdf-frame" title="Sum All Values In A Range" src="assets/pdf/sum-all.pdf#view=fitH&scrollbar=1&toolbar=1" ></iframe>
<div class="download-holder sm-all-download-holder">
<button class="btn-dl sm-all-btn sm-all-pdf-btn" id="sm-all-pdf-download-btn" aria-label="download">
<a class="dl-link sm-all-dl-link" href="assets/pdf/sum-all.pdf" download="sum-all.pdf" alt="download sum all numbers in a range file">
<box-icon id="sm-all-pdf-download" name='download' class="icon download sm-all-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /Sum All in Range Dashboard -->
<!-- To Rome and Back -->
<div id="rome" class="container rome-container">
<div class="home-btn-holder">
<button id="rome-btn-close" class="btn-home rome-home" aria-label="home">
<box-icon name='home' class="icon-home rome-home-icon"></box-icon>
</button>
</div>
<div class="window-holder rome-window-holder">
<div class="window rome-window">
<form id="rome-form" class="rome-form">
<p class="intro rome-intro">
Number to Roman or Roman to Number.
</p>
<!-- INPUT FIELD -->
<div class="input-holder rome-input-holder">
<!-- USER INPUT -->
<input id="rome-text" class="text-field rome-text-field" name="rome-text" type="text" placeholder="Ex: 1234 or MCM" autocapitalize= "characters" />
</div>
<!--/ INPUT FIELD -->
<!-- RESPONSE BASED ON CRITERIA EVALUATION -->
<p id="romeResponse" class="evals romeEval"></p>
<!-- /RESPONSE BASED ON CRITERIA EVALUATION -->
<!-- SUBMIT BUTTON -->
<button id="rome-btn" class="btn-check rome-btn-check" type="submit" >CHECK IT!</button>
<!-- SUBMIT BUTTON -->
</form>
</div>
<div class="pdf-holder rome-pdf">
<div class="pdf-content rome-pdf-content" id="">
<iframe id="rome-pdf-frame" class="pdf-frame rome-pdf-frame" title="To Rome and Back" src="assets/pdf/roman.pdf#view=fitH&scrollbar=1&toolbar=1"></iframe>
<div class="download-holder rome-download-holder">
<button class="btn-dl rome-btn rome-pdf-btn" id="rome-pdf-download-btn" aria-label="download">
<a class="dl-link" href="assets/pdf/roman.pdf" download="roman.pdf" alt="download to roman numeral converter file">
<box-icon id="rome-pdf-download" name='download' class="icon download rome-dl" ></box-icon>
</a>
</button>
</div>
</div>
</div>
</div>
</div>
<!-- /To Rome and Back -->