-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
855 lines (837 loc) · 68.1 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
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
<!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">
<title>CodeKidsTutoring</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="css/style.css">
<link rel="stylesheet" href="css/alt_color.css">
</head>
<body class="scrolling-box" data-bs-spy="scroll">
<section id="home">
<!-- Navigation with Logo Home Link -->
<nav class="navbar navbar-expand-lg fixed-top">
<div class="container">
<a class="navbar-brand" href="#">
<img src="./images/logos/code coach-logos_white.png" alt="" width="249" height="67">
</a>
<button id="navbarButton" class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav">
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#home">Home</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#features">Features</a>
</li>
<li class="nav-item">
<a class="nav-link" href="#about">About</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#services">Programs</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#portfolio">Projects</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#team">Team</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#pricing">Pricing</a>
</li>
<li class="nav-item">
<a class="nav-link " href="#contact">Contact</a>
</li>
</ul>
</div>
<div class="d-flex">
<a as="button" class="btn btn-primary" id="Setmore_button_iframe" style="float:none" href="https://booking.setmore.com/scheduleappointment/5fa1a6b4-b74d-4d35-a978-e85e1fd11718">Free Trial Session!</a>
</div>
</nav>
</section>
<!--schedule Now-->
<!--<section class="container">-->
<setion >
<div class="card">
<img src="./images/banner/bg2edit.jpg" class="card-img" alt="excited girl on laptop">
<div class="card-img-overlay">
<div class="card--textBlock p-1">
<h1 class="card-title">Private Online Mentoring,<br> Guidance,<br> and Tutoring for Kids!</h1>
<p class="card-text">Learn to code, make games, and master computer skills with our expert mentors.</p><F4>
<a as="button" class="btn btn-primary" id="Setmore_button_iframe" style="float:none" href="https://booking.setmore.com/scheduleappointment/5fa1a6b4-b74d-4d35-a978-e85e1fd11718">Free Trial Session!</a>
</div>
</div>
</div>
</section>
<!--Ad-->
<!-- <section class="container p-5 mb-3">
<div class="row align-items-center">
<div class="col-10 p-0">
<h1>Most Popular Coaching Package</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget risus vitae massa semper aliquam quis mattis quam. Morbi vitae tortor tempus, placerat leo et, suscipit lectus. Phasellus ut euismod massa, eu eleifend ipsum.</p>
</div>
<div class="col p-3">
<button class="btn btn-primary float-end"> Get it Now!</button>
</div>
</div>
</section> -->
<!--Features-->
<section id="features">
<!--<div class="container features--color p-5">-->
<div class="feature--color p-5">
<div class="section-header top--reveal">
<h2 class="text-center">Coding</h2>
<p class="text-center">
Coding is a type of computer programming that teaches children how to create their own programs using symbols and letters. Kids learn about logic and problem solving skills while coding. There are many different types of coding languages, including HTML, CSS, JavaScript, Python, Java, and others. Children have the opportunity to explore these different languages and become familiar with them.</p>
</div>
<div class="row mb-5">
<div class="right--reveal col-md-6 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-chat-square-heart" viewBox="0 0 16 16">
<path d="M14 1a1 1 0 0 1 1 1v8a1 1 0 0 1-1 1h-2.5a2 2 0 0 0-1.6.8L8 14.333 6.1 11.8a2 2 0 0 0-1.6-.8H2a1 1 0 0 1-1-1V2a1 1 0 0 1 1-1h12ZM2 0a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h2.5a1 1 0 0 1 .8.4l1.9 2.533a1 1 0 0 0 1.6 0l1.9-2.533a1 1 0 0 1 .8-.4H14a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2H2Z"/>
<path d="M8 3.993c1.664-1.711 5.825 1.283 0 5.132-5.825-3.85-1.664-6.843 0-5.132Z"/>
</svg>
</div>
<table class="table-borderless">
<tr>
<td>
<h3> Coding teaches kids how to think logically.</h3>
</td>
</tr>
<td>
<p> Coding teaches kids how to solve problems using logic. It helps them understand cause-and-effect relationships. It teaches them about variables, loops, conditions, and decision making. It's a great way to teach problem solving skills.</p>
</td>
</table>
</div>
<div class="right--reveal col-md-6 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-clipboard2-heart" viewBox="0 0 16 16">
<path d="M10.058.501a.501.501 0 0 0-.5-.501h-2.98c-.276 0-.5.225-.5.501A.499.499 0 0 1 5.582 1a.497.497 0 0 0-.497.497V2a.5.5 0 0 0 .5.5h4.968a.5.5 0 0 0 .5-.5v-.503A.497.497 0 0 0 10.555 1a.499.499 0 0 1-.497-.499Z"/>
<path d="M3.605 2a.5.5 0 0 0-.5.5v12a.5.5 0 0 0 .5.5h9a.5.5 0 0 0 .5-.5v-12a.5.5 0 0 0-.5-.5h-.5a.5.5 0 0 1 0-1h.5a1.5 1.5 0 0 1 1.5 1.5v12a1.5 1.5 0 0 1-1.5 1.5h-9a1.5 1.5 0 0 1-1.5-1.5v-12a1.5 1.5 0 0 1 1.5-1.5h.5a.5.5 0 0 1 0 1h-.5Z"/>
<path d="M8.068 6.482c1.656-1.673 5.795 1.254 0 5.018-5.795-3.764-1.656-6.69 0-5.018Z"/>
</svg>
</div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3> Coding teaches kids to work independently</h3>
</td>
</tr>
<td>
<p>When kids learn to code, they start thinking like programmers. They're able to take initiative and figure out solutions to problems without being told what to do.</p>
</td>
</table>
</div>
</div>
<div class="right--reveal col-md-6 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-gear" viewBox="0 0 16 16">
<path d="M8 4.754a3.246 3.246 0 1 0 0 6.492 3.246 3.246 0 0 0 0-6.492zM5.754 8a2.246 2.246 0 1 1 4.492 0 2.246 2.246 0 0 1-4.492 0z"/>
<path d="M9.796 1.343c-.527-1.79-3.065-1.79-3.592 0l-.094.319a.873.873 0 0 1-1.255.52l-.292-.16c-1.64-.892-3.433.902-2.54 2.541l.159.292a.873.873 0 0 1-.52 1.255l-.319.094c-1.79.527-1.79 3.065 0 3.592l.319.094a.873.873 0 0 1 .52 1.255l-.16.292c-.892 1.64.901 3.434 2.541 2.54l.292-.159a.873.873 0 0 1 1.255.52l.094.319c.527 1.79 3.065 1.79 3.592 0l.094-.319a.873.873 0 0 1 1.255-.52l.292.16c1.64.893 3.434-.902 2.54-2.541l-.159-.292a.873.873 0 0 1 .52-1.255l.319-.094c1.79-.527 1.79-3.065 0-3.592l-.319-.094a.873.873 0 0 1-.52-1.255l.16-.292c.893-1.64-.902-3.433-2.541-2.54l-.292.159a.873.873 0 0 1-1.255-.52l-.094-.319zm-2.633.283c.246-.835 1.428-.835 1.674 0l.094.319a1.873 1.873 0 0 0 2.693 1.115l.291-.16c.764-.415 1.6.42 1.184 1.185l-.159.292a1.873 1.873 0 0 0 1.116 2.692l.318.094c.835.246.835 1.428 0 1.674l-.319.094a1.873 1.873 0 0 0-1.115 2.693l.16.291c.415.764-.42 1.6-1.185 1.184l-.291-.159a1.873 1.873 0 0 0-2.693 1.116l-.094.318c-.246.835-1.428.835-1.674 0l-.094-.319a1.873 1.873 0 0 0-2.692-1.115l-.292.16c-.764.415-1.6-.42-1.184-1.185l.159-.291A1.873 1.873 0 0 0 1.945 8.93l-.319-.094c-.835-.246-.835-1.428 0-1.674l.319-.094A1.873 1.873 0 0 0 3.06 4.377l-.16-.292c-.415-.764.42-1.6 1.185-1.184l.292.159a1.873 1.873 0 0 0 2.692-1.115l.094-.319z"/>
</svg> </div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3> Coding teaches kids patience.</h3>
</td>
</tr>
<td>
<p>If kids learn to code, then they learn to persevere. They learn to keep going even when they feel discouraged. They learn to stick with something long enough to succeed.</p>
</td>
</table>
</div>
</div>
<div class="right--reveal col-md-6 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-postcard-heart" viewBox="0 0 16 16">
<path d="M8 4.5a.5.5 0 0 0-1 0v7a.5.5 0 0 0 1 0v-7Zm3.5.878c1.482-1.42 4.795 1.392 0 4.622-4.795-3.23-1.482-6.043 0-4.622ZM2.5 5a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Zm0 2a.5.5 0 0 0 0 1h3a.5.5 0 0 0 0-1h-3Z"/>
<path fill-rule="evenodd" d="M0 4a2 2 0 0 1 2-2h12a2 2 0 0 1 2 2v8a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V4Zm2-1a1 1 0 0 0-1 1v8a1 1 0 0 0 1 1h12a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1H2Z"/>
</svg> </div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3> Coding teaches kids creativity.</h3>
</td>
</tr>
<td>
<p> The best thing about coding is that it encourages kids to think outside the box. It gives them the freedom to create things that no one else has ever created before.
6. Coding teaches kids patience.</p>
</td>
</table>
</div>
</div>
</div>
</div>
</section>
<!--About-->
<section id="about">
<div class="p-5">
<div class="bottom--reveal section-header">
<h2 class="text-center">About Us</h2>
<p class="text-center">We are dedicated to serving our community and enhancing the lives of kids with tech.<br /> We would love to talk to you.</p>
</div>
<div class="row mb-5">
<div class="left--reveal col-md-6 ps-3 pe-3 mb-3">
<img class="img-fluid" src="./images/about.png" />
</div>
<div class="right--reveal col-md-6 p-0">
<h2>Our Company</h2>
<p>
<h3>
1. We are a friendly family business</h3><br>
Our goal is to help people learn how to code, whether it's for fun or profit. We believe everyone should have access to technology and we want to make sure our customers get what they need to succeed.</li></ul></p>
<h3 >
2. Creative and Tech Savvy</li><br></ul></h3>
We're passionate about kids' education
We believe in a future where kids use their creativity and imagination to create the next generation of games for all us gamers to enjoy.
<h3> <br>
3. Code Coaches for Kids</h3> </li><br></ul></h3>
We don't just teach kids programming; we mentor kids on their skills and help them achieve their goals. We work with kids to find out where they are at, and then we show them how to take their knowledge to the next level.</ul></p>
<!-- <button class="btn btn-primary">Learn More</button> -->
<hr>
</div>
</div>
</div>
</section>
<!--Services-->
<section>
<div class="p-5">
<div id="services" class="top--reveal section-header">
<h2 class="text-center">OUR PLATFORMS</h2>
<p class="text-center">We teach a variety of coding and game development platforms.
</p>
</div>
<div class="row mb-5">
<div class="bottom--reveal col-md-4 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-puzzle ico--color" viewBox="0 0 16 16">
<path d="M3.112 3.645A1.5 1.5 0 0 1 4.605 2H7a.5.5 0 0 1 .5.5v.382c0 .696-.497 1.182-.872 1.469a.459.459 0 0 0-.115.118.113.113 0 0 0-.012.025L6.5 4.5v.003l.003.01c.004.01.014.028.036.053a.86.86 0 0 0 .27.194C7.09 4.9 7.51 5 8 5c.492 0 .912-.1 1.19-.24a.86.86 0 0 0 .271-.194.213.213 0 0 0 .039-.063v-.009a.112.112 0 0 0-.012-.025.459.459 0 0 0-.115-.118c-.375-.287-.872-.773-.872-1.469V2.5A.5.5 0 0 1 9 2h2.395a1.5 1.5 0 0 1 1.493 1.645L12.645 6.5h.237c.195 0 .42-.147.675-.48.21-.274.528-.52.943-.52.568 0 .947.447 1.154.862C15.877 6.807 16 7.387 16 8s-.123 1.193-.346 1.638c-.207.415-.586.862-1.154.862-.415 0-.733-.246-.943-.52-.255-.333-.48-.48-.675-.48h-.237l.243 2.855A1.5 1.5 0 0 1 11.395 14H9a.5.5 0 0 1-.5-.5v-.382c0-.696.497-1.182.872-1.469a.459.459 0 0 0 .115-.118.113.113 0 0 0 .012-.025L9.5 11.5v-.003a.214.214 0 0 0-.039-.064.859.859 0 0 0-.27-.193C8.91 11.1 8.49 11 8 11c-.491 0-.912.1-1.19.24a.859.859 0 0 0-.271.194.214.214 0 0 0-.039.063v.003l.001.006a.113.113 0 0 0 .012.025c.016.027.05.068.115.118.375.287.872.773.872 1.469v.382a.5.5 0 0 1-.5.5H4.605a1.5 1.5 0 0 1-1.493-1.645L3.356 9.5h-.238c-.195 0-.42.147-.675.48-.21.274-.528.52-.943.52-.568 0-.947-.447-1.154-.862C.123 9.193 0 8.613 0 8s.123-1.193.346-1.638C.553 5.947.932 5.5 1.5 5.5c.415 0 .733.246.943.52.255.333.48.48.675.48h.238l-.244-2.855zM4.605 3a.5.5 0 0 0-.498.55l.001.007.29 3.4A.5.5 0 0 1 3.9 7.5h-.782c-.696 0-1.182-.497-1.469-.872a.459.459 0 0 0-.118-.115.112.112 0 0 0-.025-.012L1.5 6.5h-.003a.213.213 0 0 0-.064.039.86.86 0 0 0-.193.27C1.1 7.09 1 7.51 1 8c0 .491.1.912.24 1.19.07.14.14.225.194.271a.213.213 0 0 0 .063.039H1.5l.006-.001a.112.112 0 0 0 .025-.012.459.459 0 0 0 .118-.115c.287-.375.773-.872 1.469-.872H3.9a.5.5 0 0 1 .498.542l-.29 3.408a.5.5 0 0 0 .497.55h1.878c-.048-.166-.195-.352-.463-.557-.274-.21-.52-.528-.52-.943 0-.568.447-.947.862-1.154C6.807 10.123 7.387 10 8 10s1.193.123 1.638.346c.415.207.862.586.862 1.154 0 .415-.246.733-.52.943-.268.205-.415.39-.463.557h1.878a.5.5 0 0 0 .498-.55l-.001-.007-.29-3.4A.5.5 0 0 1 12.1 8.5h.782c.696 0 1.182.497 1.469.872.05.065.091.099.118.115.013.008.021.01.025.012a.02.02 0 0 0 .006.001h.003a.214.214 0 0 0 .064-.039.86.86 0 0 0 .193-.27c.14-.28.24-.7.24-1.191 0-.492-.1-.912-.24-1.19a.86.86 0 0 0-.194-.271.215.215 0 0 0-.063-.039H14.5l-.006.001a.113.113 0 0 0-.025.012.459.459 0 0 0-.118.115c-.287.375-.773.872-1.469.872H12.1a.5.5 0 0 1-.498-.543l.29-3.407a.5.5 0 0 0-.497-.55H9.517c.048.166.195.352.463.557.274.21.52.528.52.943 0 .568-.447.947-.862 1.154C9.193 5.877 8.613 6 8 6s-1.193-.123-1.638-.346C5.947 5.447 5.5 5.068 5.5 4.5c0-.415.246-.733.52-.943.268-.205.415-.39.463-.557H4.605z"/>
</svg></div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3>Scratch</h3>
</td>
</tr>
<td>
<p>Scratch is the best platform for young beginners to coding. It uses easy to understand visual blocks.</p>
</td>
</table>
</div>
</div>
<!-- <div class="bottom--reveal col-md-4 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" transform="rotate(-90 10 0)" class="bi bi-puzzle ico--color" viewBox="0 0 16 16">
<path d="M3.112 3.645A1.5 1.5 0 0 1 4.605 2H7a.5.5 0 0 1 .5.5v.382c0 .696-.497 1.182-.872 1.469a.459.459 0 0 0-.115.118.113.113 0 0 0-.012.025L6.5 4.5v.003l.003.01c.004.01.014.028.036.053a.86.86 0 0 0 .27.194C7.09 4.9 7.51 5 8 5c.492 0 .912-.1 1.19-.24a.86.86 0 0 0 .271-.194.213.213 0 0 0 .039-.063v-.009a.112.112 0 0 0-.012-.025.459.459 0 0 0-.115-.118c-.375-.287-.872-.773-.872-1.469V2.5A.5.5 0 0 1 9 2h2.395a1.5 1.5 0 0 1 1.493 1.645L12.645 6.5h.237c.195 0 .42-.147.675-.48.21-.274.528-.52.943-.52.568 0 .947.447 1.154.862C15.877 6.807 16 7.387 16 8s-.123 1.193-.346 1.638c-.207.415-.586.862-1.154.862-.415 0-.733-.246-.943-.52-.255-.333-.48-.48-.675-.48h-.237l.243 2.855A1.5 1.5 0 0 1 11.395 14H9a.5.5 0 0 1-.5-.5v-.382c0-.696.497-1.182.872-1.469a.459.459 0 0 0 .115-.118.113.113 0 0 0 .012-.025L9.5 11.5v-.003a.214.214 0 0 0-.039-.064.859.859 0 0 0-.27-.193C8.91 11.1 8.49 11 8 11c-.491 0-.912.1-1.19.24a.859.859 0 0 0-.271.194.214.214 0 0 0-.039.063v.003l.001.006a.113.113 0 0 0 .012.025c.016.027.05.068.115.118.375.287.872.773.872 1.469v.382a.5.5 0 0 1-.5.5H4.605a1.5 1.5 0 0 1-1.493-1.645L3.356 9.5h-.238c-.195 0-.42.147-.675.48-.21.274-.528.52-.943.52-.568 0-.947-.447-1.154-.862C.123 9.193 0 8.613 0 8s.123-1.193.346-1.638C.553 5.947.932 5.5 1.5 5.5c.415 0 .733.246.943.52.255.333.48.48.675.48h.238l-.244-2.855zM4.605 3a.5.5 0 0 0-.498.55l.001.007.29 3.4A.5.5 0 0 1 3.9 7.5h-.782c-.696 0-1.182-.497-1.469-.872a.459.459 0 0 0-.118-.115.112.112 0 0 0-.025-.012L1.5 6.5h-.003a.213.213 0 0 0-.064.039.86.86 0 0 0-.193.27C1.1 7.09 1 7.51 1 8c0 .491.1.912.24 1.19.07.14.14.225.194.271a.213.213 0 0 0 .063.039H1.5l.006-.001a.112.112 0 0 0 .025-.012.459.459 0 0 0 .118-.115c.287-.375.773-.872 1.469-.872H3.9a.5.5 0 0 1 .498.542l-.29 3.408a.5.5 0 0 0 .497.55h1.878c-.048-.166-.195-.352-.463-.557-.274-.21-.52-.528-.52-.943 0-.568.447-.947.862-1.154C6.807 10.123 7.387 10 8 10s1.193.123 1.638.346c.415.207.862.586.862 1.154 0 .415-.246.733-.52.943-.268.205-.415.39-.463.557h1.878a.5.5 0 0 0 .498-.55l-.001-.007-.29-3.4A.5.5 0 0 1 12.1 8.5h.782c.696 0 1.182.497 1.469.872.05.065.091.099.118.115.013.008.021.01.025.012a.02.02 0 0 0 .006.001h.003a.214.214 0 0 0 .064-.039.86.86 0 0 0 .193-.27c.14-.28.24-.7.24-1.191 0-.492-.1-.912-.24-1.19a.86.86 0 0 0-.194-.271.215.215 0 0 0-.063-.039H14.5l-.006.001a.113.113 0 0 0-.025.012.459.459 0 0 0-.118.115c-.287.375-.773.872-1.469.872H12.1a.5.5 0 0 1-.498-.543l.29-3.407a.5.5 0 0 0-.497-.55H9.517c.048.166.195.352.463.557.274.21.52.528.52.943 0 .568-.447.947-.862 1.154C9.193 5.877 8.613 6 8 6s-1.193-.123-1.638-.346C5.947 5.447 5.5 5.068 5.5 4.5c0-.415.246-.733.52-.943.268-.205.415-.39.463-.557H4.605z"/>
</svg></div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3>Scratch Teens</h3>
</td>
</tr>
<td>
<p>Fusce non fermentum mi. Praesent vel lobortis elit. Nulla sodales, risus quis sollicitudin iaculis, felis dolor aliquet purus, eget elementum velit nunc eu dolor.</p>
</td>
</table>
</div>
</div> -->
<!-- <div class="bottom--reveal col-md-4 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-filetype-js ico--color" viewBox="0 0 16 16">
<path fill-rule="evenodd" d="M14 4.5V14a2 2 0 0 1-2 2H8v-1h4a1 1 0 0 0 1-1V4.5h-2A1.5 1.5 0 0 1 9.5 3V1H4a1 1 0 0 0-1 1v9H2V2a2 2 0 0 1 2-2h5.5L14 4.5ZM3.186 15.29a1.176 1.176 0 0 1-.111-.449h.765a.578.578 0 0 0 .255.384c.07.049.153.087.249.114.095.028.202.041.319.041.164 0 .302-.023.413-.07a.559.559 0 0 0 .255-.193.507.507 0 0 0 .085-.29.387.387 0 0 0-.153-.326c-.101-.08-.255-.144-.462-.193l-.619-.143a1.72 1.72 0 0 1-.539-.214 1.001 1.001 0 0 1-.351-.367 1.068 1.068 0 0 1-.123-.524c0-.244.063-.457.19-.639.127-.181.303-.322.528-.422.224-.1.483-.149.776-.149.305 0 .564.05.78.152.216.102.383.239.5.41.12.17.186.359.2.566h-.75a.56.56 0 0 0-.12-.258.624.624 0 0 0-.247-.181.923.923 0 0 0-.369-.068c-.217 0-.388.05-.513.152a.472.472 0 0 0-.184.384c0 .121.048.22.143.3a.97.97 0 0 0 .405.175l.62.143c.218.05.406.12.566.211.16.09.285.21.375.358.09.148.135.335.135.56 0 .247-.063.466-.188.656a1.216 1.216 0 0 1-.539.439c-.234.105-.52.158-.858.158-.254 0-.476-.03-.665-.09a1.404 1.404 0 0 1-.478-.252 1.13 1.13 0 0 1-.29-.375Zm-3.104-.033A1.32 1.32 0 0 1 0 14.791h.765a.576.576 0 0 0 .073.27.499.499 0 0 0 .454.246c.19 0 .33-.055.422-.164.092-.11.138-.265.138-.466v-2.745h.79v2.725c0 .44-.119.774-.357 1.005-.236.23-.564.345-.984.345a1.59 1.59 0 0 1-.569-.094 1.145 1.145 0 0 1-.407-.266 1.14 1.14 0 0 1-.243-.39Z"/>
</svg>
</div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3>Javascript GameDev</h3>
</td>
</tr>
<td>
<p>Fusce non fermentum mi. Praesent vel lobortis elit. Nulla sodales, risus quis sollicitudin iaculis, felis dolor aliquet purus, eget elementum velit nunc eu dolor.</p>
</td>
</table>
</div>
</div> -->
<div class="bottom--reveal col-md-4 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-controller ico--color" viewBox="0 0 16 16">
<path d="M11.5 6.027a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm2.5-.5a.5.5 0 1 1-1 0 .5.5 0 0 1 1 0zm-1.5 1.5a.5.5 0 1 0 0-1 .5.5 0 0 0 0 1zm-6.5-3h1v1h1v1h-1v1h-1v-1h-1v-1h1v-1z"/>
<path d="M3.051 3.26a.5.5 0 0 1 .354-.613l1.932-.518a.5.5 0 0 1 .62.39c.655-.079 1.35-.117 2.043-.117.72 0 1.443.041 2.12.126a.5.5 0 0 1 .622-.399l1.932.518a.5.5 0 0 1 .306.729c.14.09.266.19.373.297.408.408.78 1.05 1.095 1.772.32.733.599 1.591.805 2.466.206.875.34 1.78.364 2.606.024.816-.059 1.602-.328 2.21a1.42 1.42 0 0 1-1.445.83c-.636-.067-1.115-.394-1.513-.773-.245-.232-.496-.526-.739-.808-.126-.148-.25-.292-.368-.423-.728-.804-1.597-1.527-3.224-1.527-1.627 0-2.496.723-3.224 1.527-.119.131-.242.275-.368.423-.243.282-.494.575-.739.808-.398.38-.877.706-1.513.773a1.42 1.42 0 0 1-1.445-.83c-.27-.608-.352-1.395-.329-2.21.024-.826.16-1.73.365-2.606.206-.875.486-1.733.805-2.466.315-.722.687-1.364 1.094-1.772a2.34 2.34 0 0 1 .433-.335.504.504 0 0 1-.028-.079zm2.036.412c-.877.185-1.469.443-1.733.708-.276.276-.587.783-.885 1.465a13.748 13.748 0 0 0-.748 2.295 12.351 12.351 0 0 0-.339 2.406c-.022.755.062 1.368.243 1.776a.42.42 0 0 0 .426.24c.327-.034.61-.199.929-.502.212-.202.4-.423.615-.674.133-.156.276-.323.44-.504C4.861 9.969 5.978 9.027 8 9.027s3.139.942 3.965 1.855c.164.181.307.348.44.504.214.251.403.472.615.674.318.303.601.468.929.503a.42.42 0 0 0 .426-.241c.18-.408.265-1.02.243-1.776a12.354 12.354 0 0 0-.339-2.406 13.753 13.753 0 0 0-.748-2.295c-.298-.682-.61-1.19-.885-1.465-.264-.265-.856-.523-1.733-.708-.85-.179-1.877-.27-2.913-.27-1.036 0-2.063.091-2.913.27z"/>
</svg>
</div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3>Roblox</h3>
</td>
</tr>
<td>
<p>Roblox Studio is a free software program that allows you to create games and play games created by other users. Roblox Studio is a free software program that allows you to create games and play games created by other users. The most exciting feature of roblox studio is Team Create where student can work together to create in a 3d space </p>
</p>
</p>
</td>
</table>
</div>
</div>
<!-- <div class="bottom--reveal col-md-4 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-pc-display ico--color" viewBox="0 0 16 16">
<path d="M8 1a1 1 0 0 1 1-1h6a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H9a1 1 0 0 1-1-1V1Zm1 13.5a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0Zm2 0a.5.5 0 1 0 1 0 .5.5 0 0 0-1 0ZM9.5 1a.5.5 0 0 0 0 1h5a.5.5 0 0 0 0-1h-5ZM9 3.5a.5.5 0 0 0 .5.5h5a.5.5 0 0 0 0-1h-5a.5.5 0 0 0-.5.5ZM1.5 2A1.5 1.5 0 0 0 0 3.5v7A1.5 1.5 0 0 0 1.5 12H6v2h-.5a.5.5 0 0 0 0 1H7v-4H1.5a.5.5 0 0 1-.5-.5v-7a.5.5 0 0 1 .5-.5H7V2H1.5Z"/>
</svg></div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3>Unreal Engine</h3>
</td>
</tr>
<td>
<p>Fusce non fermentum mi. Praesent vel lobortis elit. Nulla sodales, risus quis sollicitudin iaculis, felis dolor aliquet purus, eget elementum velit nunc eu dolor.</p>
</td>
</table>
</div>
</div> -->
<div class="bottom--reveal col-md-4 p-0">
<div class="features--ico me-3">
<svg xmlns="http://www.w3.org/2000/svg" width="70" height="63" fill="currentColor" class="bi bi-dpad ico--color" viewBox="0 0 16 16">
<path d="m7.788 2.34-.799 1.278A.25.25 0 0 0 7.201 4h1.598a.25.25 0 0 0 .212-.382l-.799-1.279a.25.25 0 0 0-.424 0Zm0 11.32-.799-1.277A.25.25 0 0 1 7.201 12h1.598a.25.25 0 0 1 .212.383l-.799 1.278a.25.25 0 0 1-.424 0ZM3.617 9.01 2.34 8.213a.25.25 0 0 1 0-.424l1.278-.799A.25.25 0 0 1 4 7.201V8.8a.25.25 0 0 1-.383.212Zm10.043-.798-1.277.799A.25.25 0 0 1 12 8.799V7.2a.25.25 0 0 1 .383-.212l1.278.799a.25.25 0 0 1 0 .424Z"/>
<path d="M6.5 0A1.5 1.5 0 0 0 5 1.5v3a.5.5 0 0 1-.5.5h-3A1.5 1.5 0 0 0 0 6.5v3A1.5 1.5 0 0 0 1.5 11h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 6.5 16h3a1.5 1.5 0 0 0 1.5-1.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 16 9.5v-3A1.5 1.5 0 0 0 14.5 5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 9.5 0h-3ZM6 1.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3A1.5 1.5 0 0 0 11.5 6h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a1.5 1.5 0 0 0-1.5 1.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-3A1.5 1.5 0 0 0 4.5 10h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5h3A1.5 1.5 0 0 0 6 4.5v-3Z"/>
</svg>
</div>
<div>
<table class="table-borderless">
<tr>
<td>
<h3>PixelPad</h3>
</td>
</tr>
<td>
<p>Learn Python and game development in an easy to learn platform right in the browser. 2d graphics and instant feedback make it easy to learn.</p>
</p>
</td>
</table>
</div>
</div>
</div>
</div>
</section>
<!--Portfolio-->
<section>
<div class="p-5">
<div id="portfolio" class="top--reveal section-header mb-0">
<h2 class="text-center p-3">DEMO PROJECTS</h2>
<p class="text-center">Here are some fun little project to give you an idea of what your child can start building today!</p>
</div>
<div class="text-center pt-5 pb-5">
<button id="allProjectsButton" type="button" class="btn btn-primary mb-1">All Projects</button>
<button id="allScratchButton" type="button" class="btn btn-primary mb-1">Scratch</button>
<!-- <button id="allJavascriptButton" type="button" class="btn btn-primary mb-1">Javascript</button> -->
<!-- <button id="allUnrealButton" type="button" class="btn btn-primary mb-1">Unreal</button> -->
<button id="allPixelPadButton" type="button" class="btn btn-primary mb-1">PixelPad</button>
</div>
<div class="row justify-content-center mb-5">
<!--project1-->
<div class=" allProjects allScratch col-md-3 card text-bg-dark p-0 m-1 showMe">
<img src="./images/portfolio/01.jpg" class="card-img" alt="...">
<div class="card-img-overlay overlay--hover text-center" >
<h5 class="card-title">Scratch Project</h5>
<p>Fantasy Shooter</p>
<button class="btn eye--btn" data-bs-toggle="modal" data-bs-target="#exampleModal"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="30" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</svg></button>
</div>
<!--Start Modal-->
<div id="exampleModal" class="modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title">Scratch Project</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<iframe class="pe-3" src="https://scratch.mit.edu/projects/689608167/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe>
<p><a href="https://scratch.mit.edu/projects/689608167/" target="_blank">Scratch Project</a></p>
<p>Use mouse to aim.
Use Spacebar to shoot.
Click Green Flag to Start.
Don't let the Ghost get you!</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> <!--END Modal-->
</div> <!--END Project1-->
<!--Project2-->
<div class=" allProjects allPixelPad col-md-3 card text-bg-dark p-0 m-1 showMe">
<img src="./images/portfolio/02.jpg" class="card-img" alt="...">
<div class="card-img-overlay overlay--hover text-center" >
<h5 class="card-title">Pixelpad (Python)</h5>
<p>Game Dialog Room Demo</p>
<button class="btn eye--btn" data-bs-toggle="modal" data-bs-target="#exampleModal2"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="30" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</svg></button>
</div>
<!--Start Modal-->
<div id="exampleModal2" class="modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title">PixelPad</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<!-- <iframe class="pe-3" src="https://scratch.mit.edu/projects/689608167/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe> -->
<iframe class="pe-3" id="pixelpad-embed" title="rooms" style="border: none;" src="https://pixelpad.io/app/iyqdoambmwa/?emb=1" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe>
<p><a href="https://scratch.mit.edu/projects/689608167/" target="_blank">PixelPad</a></p>
<p>Pixelpad uses "rooms" to create scenes and game areas. Here we use a "room" to enter dialog with an NPC. Use the awsd keys to move. When you collide with the man you will enter a dailog "room". </p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> <!--END Modal-->
</div> <!--End Project2-->
<!--Start Project3-->
<div class=" allProjects allScratch col-md-3 card text-bg-dark p-0 m-1 showMe">
<img src="./images/portfolio/03.jpg" class="card-img" alt="...">
<div class="card-img-overlay overlay--hover text-center" >
<h5 class="card-title">Scratch Project</h5>
<p>Scratch Demo</p>
<button class="btn eye--btn" data-bs-toggle="modal" data-bs-target="#exampleModal3"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="30" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</svg></button>
</div>
<!--Start Modal-->
<div id="exampleModal3" class="modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title">Scratch Project</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<iframe class="pe-3" src="https://scratch.mit.edu/projects/721891794/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe>
<p><a href="https://scratch.mit.edu/projects/721794507/" target="_blank">Scratch1</a></p>
<p></p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> <!--END Modal-->
</div> <!--End Project3-->
<!--start Project4-->
<div class=" allProjects allScratch col-md-3 card text-bg-dark p-0 m-1 showMe">
<img src="./images/portfolio/04.jpg" class="card-img" alt="...">
<div class="card-img-overlay overlay--hover text-center" >
<h5 class="card-title">Splat Grasshopper</h5>
<p>Interactive animation</p>
<button class="btn eye--btn" data-bs-toggle="modal" data-bs-target="#exampleModal4"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="30" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</svg></button>
</div>
<!--Start Modal-->
<div id="exampleModal4" class="modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title">Splat grasshopper</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<iframe class="pe-3" src="https://scratch.mit.edu/projects/737348857/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe>
<p><a href="https://scratch.mit.edu/projects/737348857/" target="_blank">Splat Grasshopper</a></p>
<p> Press the green flag to start. Use space bar to move the bear. Press 'g' to move grasshoper. Press 's' to splat the grasshoper. </p>
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> <!--END Modal-->
</div> <!--end project4-->
<!--start project5-->
<div class=" allProjects allScratch col-md-3 card text-bg-dark p-0 m-1 showMe">
<img src="./images/portfolio/05.jpg" class="card-img" alt="...">
<div class="card-img-overlay overlay--hover text-center" >
<h5 class="card-title">Scratch Project</h5>
<p>Dance Party in Scratch</p>
<button class="btn eye--btn" data-bs-toggle="modal" data-bs-target="#exampleModal5"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="30" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</svg></button>
</div>
<!--Start Modal-->
<div id="exampleModal5" class="modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title">Dance Party!</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<iframe class="pe-3" src="https://scratch.mit.edu/projects/719454281/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe>
<p><a href="https://scratch.mit.edu/projects/719454281/" target="_blank">Dance Party!</a></p>
<p>Choose a nickname for Bones.
Choose how many backup dancers.
Press `spacebar` to summon Bones to the dance floor!
When Bones is on the dance floor, press `q`, `e`, `a`, `s`, or `d` to make Bones move!
Watch out for Frank cheering using Bones' nickname!
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> <!--END Modal-->
</div> <!--end project5-->
<!--start project6-->
<div class=" allProjects allScratch col-md-3 card text-bg-dark p-0 m-1 showMe">
<img src="./images/portfolio/06.jpg" class="card-img" alt="...">
<div class="card-img-overlay overlay--hover text-center" >
<h5 class="card-title">Sprite-Perspective-Scaling</h5>
<p>Sprite Perspective Scaling demo</p>
<button class="btn eye--btn" data-bs-toggle="modal" data-bs-target="#exampleModal6"><svg xmlns="http://www.w3.org/2000/svg" width="16" height="30" fill="currentColor" class="bi bi-eye" viewBox="0 0 16 16">
<path d="M16 8s-3-5.5-8-5.5S0 8 0 8s3 5.5 8 5.5S16 8 16 8zM1.173 8a13.133 13.133 0 0 1 1.66-2.043C4.12 4.668 5.88 3.5 8 3.5c2.12 0 3.879 1.168 5.168 2.457A13.133 13.133 0 0 1 14.828 8c-.058.087-.122.183-.195.288-.335.48-.83 1.12-1.465 1.755C11.879 11.332 10.119 12.5 8 12.5c-2.12 0-3.879-1.168-5.168-2.457A13.134 13.134 0 0 1 1.172 8z"/>
<path d="M8 5.5a2.5 2.5 0 1 0 0 5 2.5 2.5 0 0 0 0-5zM4.5 8a3.5 3.5 0 1 1 7 0 3.5 3.5 0 0 1-7 0z"/>
</svg></button>
</div>
<!--Start Modal-->
<div id="exampleModal6" class="modal" tabindex="-1">
<div class="modal-dialog modal-dialog-centered">
<div class="modal-content bg-dark">
<div class="modal-header">
<h5 class="modal-title">Sprite-Perspective-Scaling</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
</div>
<div class="modal-body">
<iframe class="pe-3" src="https://scratch.mit.edu/projects/719924539/embed" allowtransparency="true" width="485" height="402" frameborder="0" scrolling="no"></iframe>
<p><a href="https://scratch.mit.edu/projects/719924539/" target="_blank">Dance Party!</a></p>
<p>click on picture to scale goblin pretty close to backdrop scale.
</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Close</button>
</div>
</div>
</div>
</div> <!--END Modal-->
</div> <!--end project6-->
</div>
</section>
<!--Team-->
<section>
<div class="">
<div id="team" name="team" class="section-header mb-5">
<h2 class="text-center">CODE COACHING TEAM</h2>
<p class="text-center">We are looking foward to meeting you and help you begin your coding journey <br /> Schedule a free session today.</p>
</div>
<div class="row text-center justify-content-center mb-5">
<div class="card text-bg-dark bottom--reveal" style="width: 13rem;">
<img src="images/team/john.png" class="card-img-top" alt="...">
<div class="card-body">
<h5 class="card-title">John Clarke</h5>
<p>Founder & Coach</p>
<a as="button" class="btn btn-primary" href="./pages/john_bio.html">About</a>
<p class="card-text">Coding is fun because you get to solve problems and make stuff !!</p>
</div>
<div class="card-body">
<a href="https://github.com/omnisonic" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg></a>
<a href="https://www.linkedin.com/in/omnisonic/" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"/>
</svg></a>
</div>
</div>
<!--<div class="card text-bg-dark bottom--reveal" style="width: 13rem;">-->
<!--<img src="images/team/02.jpg" class="card-img-top" alt="...">-->
<!--<div class="card-body">-->
<!--<h5 class="card-title">Joseph Clarke</h5>-->
<!--<p>Designer & Coach</p>-->
<!--<a as="button" class="btn btn-primary" href="./pages/CoachCerts1.html">About</a>-->
<!--<p class="card-text">Some quick example text to build on the card title and make up the bulk of the card's content.</p>-->
<!--</div>-->
<!--<div class="card-body">-->
<!--<a href="#" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">-->
<!--<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>-->
<!--</svg></a>-->
<!--<a href="#" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">-->
<!--<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"/>-->
<!--</svg></a>-->
<!--</div>-->
<!--</div>-->
<div class="card text-bg-dark bottom--reveal" style="width: 13rem;">
<img src="images/team/thom.jpg" class="card-img-top rounded-circle" alt="...">
<div class="card-body">
<h5 class="card-title">Thomas Clarke</h5>
<p>Developer & Coach</p>
<p class="card-text"></p>
</div>
<div class="card-body">
<a href="#" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg></a>
<a href="#" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"/>
</svg></a>
</div>
</div>
<div class="card text-bg-dark bottom--reveal" style="width: 13rem;">
<img src="images/team/bee.gif" class="card-img-top rounded-circle" alt="...">
<div class="card-body">
<h5 class="card-title">Catherine Marie</h5>
<p>Aritist, Story Teller, Scratch Tutor</p>
<a as="button" class="btn btn-primary" href="./pages/catherine_bio.html">About</a>
<p class="card-text">Digital Artist and Children's Book Author</p>
</div>
<div class="card-body">
<a href="#" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-github" viewBox="0 0 16 16">
<path d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.012 8.012 0 0 0 16 8c0-4.42-3.58-8-8-8z"/>
</svg></a>
<a href="#" class="card-link"><svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" fill="currentColor" class="bi bi-linkedin" viewBox="0 0 16 16">
<path d="M0 1.146C0 .513.526 0 1.175 0h13.65C15.474 0 16 .513 16 1.146v13.708c0 .633-.526 1.146-1.175 1.146H1.175C.526 16 0 15.487 0 14.854V1.146zm4.943 12.248V6.169H2.542v7.225h2.401zm-1.2-8.212c.837 0 1.358-.554 1.358-1.248-.015-.709-.52-1.248-1.342-1.248-.822 0-1.359.54-1.359 1.248 0 .694.521 1.248 1.327 1.248h.016zm4.908 8.212V9.359c0-.216.016-.432.08-.586.173-.431.568-.878 1.232-.878.869 0 1.216.662 1.216 1.634v3.865h2.401V9.25c0-2.22-1.184-3.252-2.764-3.252-1.274 0-1.845.7-2.165 1.193v.025h-.016a5.54 5.54 0 0 1 .016-.025V6.169h-2.4c.03.678 0 7.225 0 7.225h2.4z"/>
</svg></a>
</div>
</div>
</div>
</div>
</section>
<!--Ad-->
<!--<section class="container features--color p-5 mb-3">
<div class="p-5 align-item-center text-center top--reveal">
<h1 class="mb-3">Student Stats</h1>
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget risus vitae massa semper aliquam quis mattis quam. Morbi vitae tortor tempus, placerat leo et, suscipit lectus. Phasellus ut euismod massa, eu eleifend ipsum.</p>
</div>
<div class="row align-items-center">
<div class="col p-3 left--reveal"><figure class="figure">
<img src="#" class="figure-img img-fluid rounded" alt="...">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>
</div>
<div class="col p-3 bottom--reveal"><figure class="figure">
<img src="#" class="figure-img img-fluid rounded" alt="...">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>
</div>
<div class="col p-3 top--reveal"><figure class="figure">
<img src="#" class="figure-img img-fluid rounded" alt="...">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>
</div>
<div class="col p-3 right--reveal"><figure class="figure">
<img src="#" class="figure-img img-fluid rounded" alt="...">
<figcaption class="figure-caption">A caption for the above image.</figcaption>
</figure>
</div>
</div>
</section>
Pricing-->
<section>
<div class="bg-dark">
<div id="pricing" class="section-header mb-5">
<h2 class="text-center pt-5">PRICING</h2>
<p class="text-center">Let's have a live free introduction over Zoom or Skype </p>
<p class="text-center"> Computer, webcam, and microphone with built in microphone are required</p>
</div>
<div class="row text-center justify-content-center pb-5 mb-5 mt-5">
<!--<div class="card text-bg-dark scale--reveal" style="width: 13rem;">-->
<!--<div class="card-body">-->
<!--<h5 class="card-title">$50</h5>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<button class="btn btn-primary">Get it Now</button>-->
<!--</div>-->
<!--</div>-->
<!--<div class="card text-bg-dark scale--reveal" style="width: 13rem;">-->
<!--<div class="card-body">-->
<!--<h5 class="card-title">$175</h5>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<button class="btn btn-primary">Get it Now</button>-->
<!--</div>-->
<!--</div>-->
<!--<div class="card text-bg-dark scale--reveal" style="width: 13rem;">-->
<!--<div class="card-body">-->
<!--<h5 class="card-title">$350</h5>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<p>package feature</p>-->
<!--<button class="btn btn-primary">Get it Now</button>-->
<!--</div>-->
<!--</div>-->
<div class="card text-bg-dark scale--reveal" style="width: 13rem;">
<div class="card-body">
<h5 class="card-title">Free Trial Session</h5>
<li>30 min over zoom</li>
<li>Easy Scheduling </li>
<li>one-on-one tutoring with screen sharing</li>
<li>Receive Email Reminder</li>
<a as="button" class="btn btn-primary" id="Setmore_button_iframe" style="float:none" href="https://booking.setmore.com/scheduleappointment/5fa1a6b4-b74d-4d35-a978-e85e1fd11718/services/40eeca8c-3347-4ac7-a0aa-fa3d2a00a1b0">Free Trial Session!</a>
</div>
</div>
</div>
</div>
</section>
<!--testimonials-->
<!-- <section class="testimonial-area" id="testimonial">
<div class="container">
<div class="section-header top--reveal">
<h2 class="section-title text-center">TESTIMONIAL</h2>
<p class="text-center wow fadeInDown">"Lorem ipsum dolor sit amet, consectetur adipiscing elit. Praesent eget risus vitae massa <br> semper aliquam quis mattis quam."</p>
</div>
<div class="row mb-5 pb-5">
<div class="col-md-4 fade--in">
<div>
<div class="row">
<div class="col-xs-12">
<blockquote>"Contrary to popular belief, Lorem Ipsuis no simply random text. It has roots in a piece of classical Layears old. belief, Lorem Ipsuis not simply"</blockquote>
</div>
</div>
<div class="row">
<div class="col-xs-3">
<img src="images/pic1.jpg" class="client--image" alt="client">
</div>
<div class="col-xs-9 half-gutter">
<h5>Client 1</h5>
<h6>Somewhere, UK</h6>
</div>
</div>
</div>
</div>
<div class="col-md-4 fade--in">
<div>
<div class="row">
<div class="col-xs-12">
<blockquote>"Contrary to popular belief, Lorem Ipsuis no simply random text. It has roots in a piece of classical Layears old. belief, Lorem Ipsuis not simply"</blockquote>
</div>
</div>
<div class="row">
<div class="col-xs-3">
<img src="images/pic2.jpg" class="client--image" alt="client">
</div>
<div class="col-xs-9 half-gutter">
<h5>Client 2</h5>
<h6>Somewhere, USA</h6>
</div>
</div>
</div>
</div>
<div class="col-md-4">
<div class="fade--in">
<div class="row">
<div class="col-xs-12">
<blockquote>"Contrary to popular belief, Lorem Ipsuis no simply random text. It has roots in a piece of classical Layears old. belief, Lorem Ipsuis not simply"</blockquote>
</div>
</div>
<div class="row">
<div class="col-xs-3">
<img src="images/pic1.jpg" class="client--image" alt="client">
</div>
<div class="col-xs-9 half-gutter">
<h5>Client 3</h5>
<h6>Somewhere, USA</h6>
</div>
</div>
</div>
</div>
</div>
</div>
</section> -->
<!--contact-->
<section>
<div class="bg-dark">
<div class="top--reveal">
<h2 class="section-title text-center pt-5 pb-3">Contact Us</h2>
<p class="text-center pb-5">Please contact us if you have any questions.</p>
</div>
<div class="row p-3 pb-5">
<div class="col-sm-4 col-md-4">
<div id="contact" class="contact-form">
<h3>Contact Info</h3>
<address>
<strong>JCTECH LLC</strong><br>
41 West Highway 14 #586<br>
Spearfish SD, 57783, USA
</address>
</div>
</div>
<div class="col-sm-6 col-md-6">
<div class="contact-form">
<form id="main-contact-form" name="contact-form" method="post" action="https://formspree.io/f/xnqwdnle">
<div class="form-group pb-2">
<input type="text" name="name" class="form-control text-bg-dark" placeholder="Name" required>
</div>
<div class="form-group pb-2">
<input type="email" name="email" class="form-control text-bg-dark" placeholder="Email" required>
</div>
<div class="form-group pb-2">
<input type="text" name="subject" class="form-control text-bg-dark" placeholder="Subject" required>
</div>
<div class="form-group pb-2">
<textarea name="message" class="form-control text-bg-dark" rows="8" placeholder="Message" required></textarea>
</div>
<button type="submit" class="btn btn-primary mb-5 pb-2">Send Message</button>
</form>
</div>
</div>
</div>
</div>
</section>
<!--footer-->
<footer id="footer">
<div>
<div class="row p-5">
<div class="col-sm-6">
© 2022 JCTech LLC.
</div>
<div class="col-sm-6">
<ul class="social-icons">
<!--<li><a href="#"><i class="fa fa-facebook"></i></a></li>-->
</ul>
</div>
</div>
</div>
</footer><!--/#footer-->
<script type="text/javascript">
function codeAddress() {
document.getElementById("main-contact-form").reset();
}
window.onload = codeAddress;
</script>
<script id="setmore_script" type="text/javascript" src="https://my.setmore.com/webapp/js/src/others/setmore_iframe.js"></script><a id="Setmore_button_iframe" style="float:none; position: fixed; right: -2px; top: 25%; display: block; z-index: 20000" href="https://booking.setmore.com/scheduleappointment/5fa1a6b4-b74d-4d35-a978-e85e1fd11718"><img border="none" src="https://storage.googleapis.com/full-assets/setmore/images/1.0/Calendar/Setmore-Book-Now.png" alt="Book an appointment with jctech using Setmore" /></a>
<script src="js/script.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-Xe+8cL9oJa6tN/veChSP7q+mnSPaj5Bcu9mPX5F5xIGE0DVittaqT5lorf0EI7Vk" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-ODmDIVzN+pFdexxHEHFBQH3/9/vQ9uori45z4JjnFsRydbmQbmL5t1tQ0culUzyK" crossorigin="anonymous"></script>
<!--- scheduling -->
<script id="setmore_script" type="text/javascript" src="https://my.setmore.com/webapp/js/src/others/setmore_iframe.js"></script>
</body>
</html>