-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
727 lines (727 loc) · 41.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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/style.css">
<title>My #30DaysOfJavaScript by Van Ribeiro</title>
</head>
<body>
<header class="header">
<div class="container">
<div class="logo">
<h1>
<a href="/">#30DaysOfJavaScript</a>
</h1>
<p>coded by <a href="https://vanribeiro.github.io">Van Ribeiro</a></p>
</div>
<div class="text">
<p>Because I need to improve my VanillaJS skills,
I decided to do the <a href="https://javascript30.com/">WesBos challenge</a>.
I'm going to write the updates here! 😃
</p>
</div>
</div>
</header>
<main class="main-content">
<div class="container">
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/01 - JavaScript Drum Kit/index.html">
<img class="img-fluid" src="/images/challenges/01-javascript-drum-kit.png" alt="JavaScript Drum Kit">
<figcaption><h2>Day 01 - JavaScript Drum Kit</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/01 - JavaScript Drum Kit/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/01%20-%20JavaScript%20Drum%20Kit">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/02 - JS and CSS Clock/index.html">
<img class="img-fluid" src="/images/challenges/02-js-and-css-clock.png" alt="JS and CSS Clock">
<figcaption><h2>Day 02 - JS and CSS Clock</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/02 - JS and CSS Clock/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/02%20-%20JS%20and%20CSS%20Clock">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/03 - CSS Variables/index.html">
<img class="img-fluid" src="/images/challenges/03-update-css-varibles-with-js.png" alt="JS and CSS Clock">
<figcaption><h2>Day 03 - Playing with CSS Variables and JS</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/03 - CSS Variables/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/03%20-%20CSS%20Variables">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/04 - Array Cardio Day 1/index.html">
<img class="img-fluid" src="/images/challenges/04-array-cardio.png" alt="Array Cardio - Day 01">
<figcaption><h2>Day 04 - Array Cardio 💪</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/04 - Array Cardio Day 1/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/04%20-%20Array%20Cardio%20Day%201">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/05 - Flex Panel Gallery/index.html">
<img class="img-fluid" src="/images/challenges/05-flex-panel-image-gallery.jpg" alt="Flex Panel Image Gallery">
<figcaption><h2>05 - Flex Panel Gallery</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/05 - Flex Panel Gallery/index.html">Demo</a> |
<a href="/challenge-files/05 - Flex Panel Gallery/my-studies/flex-examples.html">My Studies</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/05%20-%20Flex%20Panel%20Gallery">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/06 - Type Ahead/index.html">
<img class="img-fluid" src="/images/challenges/06-type-ahead.png" alt="Type Ahead">
<figcaption><h2>06 - Type Ahead</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/06 - Type Ahead/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/06%20-%Type%20Ahead">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/07 - Array Cardio Day 2/index.html">
<img class="img-fluid" src="/images/challenges/07-array-cardio.png" alt="Array Cardio - Day 02">
<figcaption><h2>Day 07 - Array Cardio 💪💪</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/07 - Array Cardio Day 2/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/07%20-%20Array%20Cardio%20Day%202">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/08 - Fun with HTML5 Canvas/index.html">
<img class="img-fluid" src="/images/challenges/08-fun-with-html5-canvas.png" alt="Fun with HTML5 Canvas">
<figcaption><h2>Day 08 - Fun with HTML5 Canvas</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/08 - Fun with HTML5 Canvas/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/08%20-%20Fun%20with%20HTML5%20Canvas">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/09 - Dev Tools Domination/index.html">
<img class="img-fluid" src="/images/challenges/09-dev-tools-domination.png" alt="Dev Tools Domination">
<figcaption><h2>Day 09 - Dev Tools Domination</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-console-only">Console Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/09 - Dev Tools Domination/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/09%20-%20Dev%20Tools%20Domination">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/10 - Hold Shift and Check Checkboxes/index.html">
<img class="img-fluid" src="/images/challenges/10-hold-shift-and-check-checkboxes.png" alt="Hold Shift and Check Checkboxes">
<figcaption><h2>Day 10 - Hold Shift and Check Checkboxes</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Better UX on Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/10 - Hold Shift and Check Checkboxes/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/10%20-%20Hold%20Shift%20and%20Check%20Checkboxes">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/11 - Custom Video Player/index.html">
<img class="img-fluid" src="/images/challenges/11-custom-video-player.png" alt="Custom Video Player">
<figcaption><h2>Day 11 - Custom Video Player</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/11 - Custom Video Player/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/11%20-%20Custom%20Video%20Player/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/12 - Key Sequence Detection/index.html">
<img class="img-fluid" src="/images/challenges/12-key-sequence-detection.png" alt="Custom Video Player">
<figcaption><h2>Day 12 - Key Sequence Detection</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Better UX on Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/12 - Key Sequence Detection/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/12%20-%20Key%20Sequence%20Detection/">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/13 - Slide in on Scroll/index.html">
<img class="img-fluid" src="/images/challenges/13-slide-in-on-scroll.png" alt="Scroll in on Scroll">
<figcaption><h2>Day 13 - Slide in on Scroll</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/13 - Slide in on Scroll/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/13%20-%20Slide%20in%20on%20Scroll/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/14 - JavaScript References VS Copying/index.html">
<img class="img-fluid" src="/images/challenges/14-javascript-references-vs-copying.png" alt="JavaScript References VS Copying">
<figcaption><h2>Day 14 - JavaScript References VS Copying</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/14 - JavaScript References VS Copying/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/14%20-%20JavaScript%20References%20VS%Copying/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/15 - LocalStorage/index.html">
<img class="img-fluid" src="/images/challenges/15-localstorage.jpg" alt="LocalStorage">
<figcaption><h2>Day 15 - LocalStorage</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/15 - LocalStorage/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/15%20-%20LocalStorage/">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/16 - Mouse Move Shadow/index.html">
<img class="img-fluid" src="/images/challenges/16-mouse-move-shadow.png" alt="Mouse Move Shadow">
<figcaption><h2>Day 16 - Mouse Move Shadow</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop Only</span>
<span class="sticker-mouse-only">Mouse Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/16 - Mouse Move Shadow/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/16%20-%20Mouse%20Move%20Shadow/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/17 - Sort Without Articles/index.html">
<img class="img-fluid" src="/images/challenges/17-sort-without-articles.png" alt="Sort Without Articles">
<figcaption><h2>Day 17 - Sort Without Articles</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/17 - Sort Without Articles/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/17%20-%20Sort%20Without%20Articles/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/18 - Adding Up Times with Reduce/index.html">
<img class="img-fluid" src="/images/challenges/18-adding-up-times-with-reduce.png" alt="Day 18 - Adding Up Times with Reduce">
<figcaption><h2>Day 18 - Adding Up Times with Reduce</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/18 - Adding Up Times with Reduce/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/18%20-%20Adding%20Up%20Times%20with%20Reduce/">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/19 - Webcam Fun/index.html">
<img class="img-fluid" src="/images/challenges/19-webcam-fun.png" alt="Webcam Fun">
<figcaption><h2>Day 19 - Webcam Fun</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Better UX on Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/19 - Webcam Fun/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/19%20-%20Webcam%20Fun/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/20 - Speech Detection/index.html">
<img class="img-fluid" src="/images/challenges/20-speech-detection.png" alt="Speech Detection">
<figcaption><h2>Day 20 - Speech Detection</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/20 - Speech Detection/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/20%20-%20Speech%20Detection/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/21 - Geolocation/index.html">
<img class="img-fluid" src="/images/challenges/21-geolocation.png" alt="Geolocation">
<figcaption><h2>Day 21 - Geolocation</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-android-only">Android Only</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/21 - Geolocation/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/21%20-%20Geolocation/">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/22 - Follow Along Link Highlighter/index.html">
<img class="img-fluid" src="/images/challenges/22-follow-along-link-highlighter.png" alt="Follow Along Link Highlighter">
<figcaption><h2>Day 22 - Follow Along Link Highlighter</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mouse-only">Mouse Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/22 - Follow Along Link Highlighter/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/21%20-%20Follow%20Along%20Link%20Highlighter/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/23 - Speech Synthesis/index.html">
<img class="img-fluid" src="/images/challenges/23-speech-synthesis.png" alt="Speech Synthesis">
<figcaption><h2>Day 23 - Speech Synthesis</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/23 - Speech Synthesis/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/23%20-%20Speech%20Synthesis/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/24 - Sticky Nav/index.html">
<img class="img-fluid" src="/images/challenges/24-sticky-nav.png" alt="Sticky Nav">
<figcaption><h2>Day 24 - Sticky Nav</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Better UX on Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/24 - Sticky Nav/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/24%20-%20Sticky%20Nav/">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/25 - Event Capture, Propagation, Bubbling and Once/index.html">
<img class="img-fluid" src="/images/challenges/25-event-capture-propagation-bubbling-and-once.png" alt="Event Capture, Propagation, Bubbling and Once">
<figcaption><h2>Day 25 - Event Capture, Propagation, Bubbling and Once</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-read-only">Read Only</span>
</div>
<div class="card-links">
<a href="/challenge-files/25 - Event Capture, Propagation, Bubbling and Once/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/25%20-%20Event%20Capture,%20Propagation,%20Bubbling%20and%20Once/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/26 - Stripe Follow Along Nav/index.html">
<img class="img-fluid" src="/images/challenges/26-stripe-follow-along-nav.png" alt="Stripe Follow Along Nav">
<figcaption><h2>Day 26 - Stripe Follow Along Nav</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Better UX on Desktop</span>
<span class="sticker-mobile">Mobile</span>
<span class="sticker-mouse-only">Better UX with Mouse</span>
</div>
<div class="card-links">
<a href="/challenge-files/26 - Stripe Follow Along Nav/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/26%20-%20Stripe%20Follow%20Along%20Nav/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/27 - Click and Drag/index.html">
<img class="img-fluid" src="/images/challenges/27-click-and-drag.png" alt="Click and Drag">
<figcaption><h2>Day 27 - Click and Drag</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/27 - Click and Drag/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/27%20-%20Click%20and%20Drag/">Code</a>
</div>
</div>
</section>
</div>
</div>
<div class="row">
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/28 - Video Speed Controller/index.html">
<img class="img-fluid" src="/images/challenges/28-video-speed-controller.png" alt="Video Speed Controller">
<figcaption><h2>Day 28 - Video Speed Controller</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/28 - Video Speed Controller/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/28%20-%20Video%20Speed%20Controller/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/29 - Countdown Timer/index.html">
<img class="img-fluid" src="/images/challenges/29-countdown-timer.png" alt="Countdown Timer">
<figcaption><h2>Day 29 - Countdown Timer</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/29 - Countdown Timer/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/29%20-%20Countdown%20Timer/">Code</a>
</div>
</div>
</section>
</div>
<div class="col-4">
<section class="card">
<header>
<figure>
<a href="/challenge-files/30 - Whack A Mole/index.html">
<img class="img-fluid" src="/images/challenges/30-whack-a-mole.png" alt="Whack A Mole">
<figcaption><h2>Day 30 - Whack A Mole</h2></figcaption>
</a>
</figure>
</header>
<div class="card-content">
<div class="stickers">
<span class="sticker-desktop">Better UX on Desktop</span>
<span class="sticker-mobile">Mobile</span>
</div>
<div class="card-links">
<a href="/challenge-files/30 - Whack A Mole/index.html">Demo</a> |
<a href="https://github.com/vanribeiro/30days-Of-JavaScript/tree/master/challenge-files/30%20-%20Whack%20A%20Mole/">Code</a>
</div>
</div>
</section>
</div>
</div>
</div>
</div>
</main>
<footer>
<div class="container">
<p>© 2020 - page coded by <a href="https://vanribeiro.github.io">Van Ribeiro</a></p>
</div>
</footer>
</body>
</html>