-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdances-ba-ingles.html
More file actions
1074 lines (1022 loc) · 45 KB
/
dances-ba-ingles.html
File metadata and controls
1074 lines (1022 loc) · 45 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 name="viewport" content="width=device-width, minimum-scale = 1.0, initial-scale = 1.0, maximum-scale = 5.0, user-scalable=yes, shrink-to-fit=no">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="Kyle Francis Chua's Thesis project that aims to keep Philippine cultural dances alive">
<meta property="og:title" content="Kibo">
<meta property="og:type" content="website">
<meta property="og:description" content="Kyle Francis Chua's Thesis project that aims to keep Philippine cultural dances alive">
<link rel="stylesheet" href="bootstrap.min.css">
<link rel="stylesheet" href="animate.css">
<link rel="stylesheet" href="main.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<nav class="navbar navbar-expand-lg py-4">
<div class="navbarContainter">
<ul class="flex spaceBetween alignCenter">
<li class="nav-item">
<a href="/" class="navbar-brand"><img src="./resources/logo/logo.svg" alt="logo"></a>
</li>
<li class="nav-item">
<a href="about.html" class="nav-link">About</a>
</li>
<li class="nav-item">
<p class="nav-link" style="cursor: pointer">Dances</p>
<ul class="dance-dropdown">
<li><a href="dances-ba-ingles.html" class="nav-link nav-dropdown">Ba-Ingles</a></li>
<li><a href="dances-polka.html" class="nav-link nav-dropdown">Polka</a></li>
</ul>
</li>
<li class="nav-item">
<a href="adaptation.html" class="nav-link">Adaptation</a>
</li>
</ul>
</div>
</nav>
<section class="dances">
<div class="container">
<div class="row">
<div class="col-md-6 dances-landing flex alignCenter">
<div class="animated fadeIn">
<h1>Ba-Ingles</h1>
<p>This is a delightful dance from <b>Cabugao, Ilocos Sur</b>. Ba-Ingles is derived from the words “baile” and “Ingles” meaning <b>English dance</b>. This dance was brought here by the early English tradesmen. Except for the last figure which is
typically Ilocano in mood and movements, all the other figures are similar in nature and mood to some English dances.</p>
<h6>Note: Information throughout this page was taken from <br> <strong style="font-weight: bold">Francisca Reyes-Aquino’s ‘Philippine Folk Dances’ Vol. 1</strong></h6>
<h5 style="font-weight: normal">Difficulty: Easy</h5>
</div>
</div>
<div class="col-md-6 flex justifyCenter ba-ingles-intro-img">
<img src="./resources/ba-ingles/ba-ingles.svg" alt="Ba-Ingles Dance" style="width: 100%; height: 100%" class="animated slideInUp">
</div>
</div>
</div>
</section>
<div class="line" style="margin-top: -75px"></div>
<section class="dances">
<div class="container">
<div class="row no-gutters">
<div class="col-md-6 dances-landing flex alignCenter">
<div>
<div class="formation">
<h2>Formation</h2>
<p><b>Partners</b> stand opposite each other about six feet apart. When facing audience, Girl stands at partner’s right. One to any number of couples may take part in this dance..</p>
<h6>Dance can be learned alone or with a partner</h6>
</div>
<div class="music">
<h2>Music & Count</h2>
<p>Count is <b>'one, two'</b> or <b>‘one, and two’</b> to a measure. ‘Ba-Ingles’ has set music to be used for the dance.</p>
<h6>Note: the number of measures are signified in the written tutorial for each figure.</h6>
</div>
<div class="costume">
<h2>Costume</h2>
<p><b>Dancers</b> are dressed in peasant costume</p>
</div>
</div>
</div>
<div class="col-md-6 flex justifyCenter ba-ingles-formation-img dances-bg">
<img id="baingles-formation" src="./resources/ba-ingles/baingles-formation.svg" alt="Ba Ingles Formation" style="width: 80%; display: none">
<iframe src="https://open.spotify.com/embed/track/5plSEfV5CzW2GesD3wJUUT" width="300" height="80" frameborder="0" allowtransparency="true" allow="encrypted-media" id="baingles-spotify" style="height: 12%; margin: auto; display: none"></iframe>
<img id="baingles-costume" src="./resources/ba-ingles/baingles-costume.svg" alt="BaIngles Costume" style="width: 80%; display: none">
</div>
</div>
</div>
</section>
<section class="dances">
<div class="container">
<div class="row flex justifyCenter alignCenter dances-vid">
<iframe
style="position: relative; height: 100%; width: 100%;"
src="https://www.youtube.com/embed/VEQIP8-xz1Y"
frameborder="0"
allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture"
allowfullscreen>
</iframe>
</div>
<div class="row dances-landing">
<div class="col-md-3 flex justifyCenter">
<h3>Time Stamps</h3>
</div>
<div class="col-md-3">
<p><b>Full Performance:</b> 0:04 - 3:07
<br><b>Important Moves:</b> 3:07 - 3:59
<br><b>Figures:</b> 3:59 - END</p>
</div>
<div class="col-md-6">
<h6>Note: Video is performed with different costume for teaching purposes. As much as possible, please view the video first before referring to the written tutorial for a clearer understanding of how to perform each movement.</h6>
</div>
</div>
</div>
</section>
<section class="dances">
<div class="container dances-landing">
<div class="row flex justifyCenter">
<h3 class="written-title">Written Tutorial</h3>
</div>
</div>
<div id="baIngles-1">
<div class="flex alignCenter arrow" onclick="baIngles9()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row">
<div class="col-md-4">
<h2>Introduction</h2>
<span class="emphasized">0:00-0:06 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>3-step turn right in place and bow to partner or audience, Girl holding skirt, Boy hands on his waist. (2 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>“BACK & FORTH”</b></h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 1</h2>
<span class="emphasized">0:13-0:22 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with right foot, take 4 <span class="emphasized">change steps</span> forward to meet partner at center. <span class="emphasized">Kumintang</span> right and left hand alternately, free hand on waist. (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) and (B). (8 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/pre-set.svg" alt="pre-set">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">pre-set</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/Change-Step.gif" alt="(A) change-step">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) change-step</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/kumintang.svg" alt="(A) Kumintang">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) Kumintang</div>
<div class="dances-step-desc-note">Note: Move the wrist in a clockwise or counter-clockwise motion.</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles2()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-2">
<div class="flex alignCenter arrow" onclick="baIngles1()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 1</h2>
<span class="emphasized">0:13-0:22 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with right foot, take 4 <span class="emphasized">change steps</span> forward to meet partner at center. <span class="emphasized">Kumintang</span> right and left hand alternately, free hand on waist. (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) and (B). (8 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>“CLAPS”</b></h4>
<p>   </p>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 2</h2>
<h4><b>The movements of Boy and Girl
<br>are done simultaneously</b></h4>
<span class="emphasized">0:22-0:40 on Spotify</span>
</div>
<div class="col-md-8">
<h5 class="dances-step-role">[Boy]</h5>
<ol>
<li>
<p>Starting with R foot, take 4 change steps forward to partner’s right side (take bigger steps to reach partner’s side), kumintang hands as in figure 1 (A). (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) to partner’s left side. (4 measures)</p>
</li>
<li>
<p>Repeat (B). (4 measures)</p>
</li>
</ol>
<h5 class="dances-step-role">[Girl]</h5>
<ol>
<li>
<p>Clap hands 3 times to measure (counts 1, and, 2) throughout this figure. (16 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/boy-position.svg" alt="Boy position">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">Boy position</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/girl-position.svg" alt="Girl position">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">Girl position</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="dance-together">
<img src="./resources/ba-ingles/boy-position.svg" alt="Boy position">
<img src="./resources/ba-ingles/girl-position.svg" alt="Girl position">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">Change step to partner’s right side</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles3()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-3">
<div class="flex alignCenter arrow" onclick="baIngles2()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 2</h2>
<h4><b>The movements of Boy and Girl
<br>are done simultaneously</b></h4>
<span class="emphasized">0:22-0:40 on Spotify</span>
</div>
<div class="col-md-8">
<h5 class="dances-step-role">[Boy]</h5>
<ol>
<li>
<p>Starting with R foot, take 4 change steps forward to partner’s right side (take bigger steps to reach partner’s side), kumintang hands as in figure 1 (A). (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) to partner’s left side. (4 measures)</p>
</li>
<li>
<p>Repeat (B). (4 measures)</p>
</li>
</ol>
<h5 class="dances-step-role">[Girl]</h5>
<ol>
<li>
<p>Clap hands 3 times to measure (counts 1, and, 2) throughout this figure. (16 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>SWITCH</b></h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 3</h2>
<h4><b>Throughout this figure
<br>kumintang R and L hand
<br>alternatively as in figure 1 (a)</b></h4>
<span class="emphasized">0:40-0:57 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Partners take 2 <span class="emphasized">change steps</span> forward, starting with Right foot, to meet at center. (2 measures)</p>
</li>
<li>
<p>Change-step turn right (use 2 change steps) in place. Finish the turn in <span class="emphasized">front of partner</span>, facing each other. (2 measures)</p>
</li>
<li>
<p>2 change steps forward, passing by each other’s R shoulder, <span class="emphasized">going to partner’s place</span>. (2 measures)</p>
</li>
<li>
<p>Change-step turn right about (use 2 change steps). Finish facing each other. (2 measures)</p>
</li>
<li>
<p>Repeat all (A-D) finishing in proper places. (8 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/Change-Step.gif" alt="(A) Change Step">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) Change Step</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/front-partner.svg" alt="(B) Front of Partner">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(B) Front of Partner</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/partner-place.svg" alt="(C) Go to Partner’s Place">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(C) Go to Partner’s Place</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles4()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-4">
<div class="flex alignCenter arrow" onclick="baIngles3()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 3</h2>
<h4><b>Throughout this figure
<br>kumintang R and L hand
<br>alternatively as in figure 1 (a)</b></h4>
<span class="emphasized">0:40-0:57 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Partners take 2 <span class="emphasized">change steps</span> forward, starting with Right foot, to meet at center. (2 measures)</p>
</li>
<li>
<p>Change-step turn right (use 2 change steps) in place. Finish the turn in <span class="emphasized">front of partner</span>, facing each other. (2 measures)</p>
</li>
<li>
<p>2 change steps forward, passing by each other’s R shoulder, <span class="emphasized">going to partner’s place</span>. (2 measures)</p>
</li>
<li>
<p>Change-step turn right about (use 2 change steps). Finish facing each other. (2 measures)</p>
</li>
<li>
<p>Repeat all (A-D) finishing in proper places. (8 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>“LOOK”</b></h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 4</h2>
<h4><b>Music playing slowly</b></h4>
<span class="emphasized">0:57-1:30 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with R foot, partners take <span class="emphasized">4 slow steps forward to meet at center</span>, Girl holding skirt, Boy’s hands on his waist. (2 measures)</p>
</li>
<li>
<p>Body orientation to the left and step Right foot sideward, point Left foot across R in rear and bend knees slightly, kumintang R hand, L hand on waist. <span class="emphasized">Partners stand side by side by the R shoulders and
looking at each other.</span> (1 measure)</p>
</li>
<li>
<p>Step L foot sideward, turn right about and point R across the L in rear. Bend the knees slightly, kumintang L hand, R hand on waist. Partners stand side by side by L shoulders and looking at each other. (1 measure)</p>
</li>
<li>
<p>Facing each other and starting with R foot, take <span class="emphasized">4 steps backward to proper places</span>. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>4 steps in place, starting with R foot. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>Repeat all (A-E). (8 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/meet-center.svg" alt="(A) Meet at Center">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) Meet at Center</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/look.svg" alt="(B) Look at Each Other">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(B) Look at Each Other</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/step-backwards.svg" alt="(C) 4 Steps Backwards">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(C) 4 Steps Backwards</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles5()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-5">
<div class="flex alignCenter arrow" onclick="baIngles4()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 4</h2>
<h4><b>Music playing slowly</b></h4>
<span class="emphasized">0:57-1:30 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with R foot, partners take <span class="emphasized">4 slow steps forward to meet at center</span>, Girl holding skirt, Boy’s hands on his waist. (2 measures)</p>
</li>
<li>
<p>Body orientation to the left and step Right foot sideward, point Left foot across R in rear and bend knees slightly, kumintang R hand, L hand on waist. <span class="emphasized">Partners stand side by side by the R shoulders and
looking at each other.</span> (1 measure)</p>
</li>
<li>
<p>Step L foot sideward, turn right about and point R across the L in rear. Bend the knees slightly, kumintang L hand, R hand on waist. Partners stand side by side by L shoulders and looking at each other. (1 measure)</p>
</li>
<li>
<p>Facing each other and starting with R foot, take <span class="emphasized">4 steps backward to proper places</span>. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>4 steps in place, starting with R foot. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>Repeat all (A-E). (8 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>“BACK & FORTH”</b></h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 5</h2>
<h4><b>Repeat Figure 1</b></h4>
<span class="emphasized">0:13-0:22 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with right foot, take 4 <span class="emphasized">change steps</span> forward to meet partner at center. <span class="emphasized">Kumintang</span> right and left hand alternately, free hand on waist. (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) and (B). (8 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/meet-center.svg" alt="(A) Meet at Center">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) Meet at Center</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/look.svg" alt="(B) Look at Each Other">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(B) Look at Each Other</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/step-backwards.svg" alt="(C) 4 Steps Backwards">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(C) 4 Steps Backwards</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles6()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-6">
<div class="flex alignCenter arrow" onclick="baIngles5()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 5</h2>
<h4><b>Repeat Figure 1</b></h4>
<span class="emphasized">0:13-0:22 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with right foot, take 4 <span class="emphasized">change steps</span> forward to meet partner at center. <span class="emphasized">Kumintang</span> right and left hand alternately, free hand on waist. (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) and (B). (8 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>“CLAPS”</b></h4>
<p>   </p>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 6</h2>
<h4><b>Repeat Figure 2, but
<br>switch roles.</b></h4>
<span class="emphasized">1:47-2:04 on Spotify</span>
</div>
<div class="col-md-8">
<h5 class="dances-step-role">[Girl]</h5>
<ol>
<li>
<p>Starting with R foot, take 4 change steps forward to partner’s right side (take bigger steps to reach partner’s side), kumintang hands as in figure 1 (A). (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) to partner’s left side. (4 measures)</p>
</li>
<li>
<p>Repeat (B). (4 measures)</p>
</li>
</ol>
<h5 class="dances-step-role">[Boy]</h5>
<ol>
<li>
<p>Clap hands 3 times to measure (counts 1, and, 2) throughout this figure. (16 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/girl-position.svg" alt="Girl position">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">Girl position</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/boy-position.svg" alt="Boy position">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">Boy position</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="dance-together">
<img src="./resources/ba-ingles/boy-position.svg" alt="Boy position">
<img src="./resources/ba-ingles/girl-position.svg" alt="Girl position">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">Change step to partner’s right side</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles7()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-7">
<div class="flex alignCenter arrow" onclick="baIngles6()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 6</h2>
<h4><b>Repeat Figure 2, but
<br>switch roles.</b></h4>
<span class="emphasized">1:47-2:04 on Spotify</span>
</div>
<div class="col-md-8">
<h5 class="dances-step-role">[Girl]</h5>
<ol>
<li>
<p>Starting with R foot, take 4 change steps forward to partner’s right side (take bigger steps to reach partner’s side), kumintang hands as in figure 1 (A). (4 measures)</p>
</li>
<li>
<p>Turn right about and repeat (A) going to proper places. Finish facing partner, turning right about. (4 measures)</p>
</li>
<li>
<p>Repeat (A) to partner’s left side. (4 measures)</p>
</li>
<li>
<p>Repeat (B). (4 measures)</p>
</li>
</ol>
<h5 class="dances-step-role">[Boy]</h5>
<ol>
<li>
<p>Clap hands 3 times to measure (counts 1, and, 2) throughout this figure. (16 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>SWITCH</b></h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 7</h2>
<h4><b>Repeat Figure 3</b></h4>
<span class="emphasized">2:04-2:21 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Partners take 2 <span class="emphasized">change steps</span> forward, starting with Right foot, to meet at center. (2 measures)</p>
</li>
<li>
<p>Change-step turn right (use 2 change steps) in place. Finish the turn in <span class="emphasized">front of partner</span>, facing each other. (2 measures)</p>
</li>
<li>
<p>2 change steps forward, passing by each other’s R shoulder, <span class="emphasized">going to partner’s place</span>. (2 measures)</p>
</li>
<li>
<p>Change-step turn right about (use 2 change steps). Finish facing each other. (2 measures)</p>
</li>
<li>
<p>Repeat all (A-D) finishing in proper places. (8 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/Change-Step.gif" alt="(A) Change Step">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) Change Step</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/front-partner.svg" alt="(B) Front of Partner">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(B) Front of Partner</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/partner-place.svg" alt="(C) Go to Partner’s Place">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(C) Go to Partner’s Place</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles8()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-8">
<div class="flex alignCenter arrow" onclick="baIngles7()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 7</h2>
<h4><b>Repeat Figure 3</b></h4>
<span class="emphasized">2:04-2:21 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Partners take 2 <span class="emphasized">change steps</span> forward, starting with Right foot, to meet at center. (2 measures)</p>
</li>
<li>
<p>Change-step turn right (use 2 change steps) in place. Finish the turn in <span class="emphasized">front of partner</span>, facing each other. (2 measures)</p>
</li>
<li>
<p>2 change steps forward, passing by each other’s R shoulder, <span class="emphasized">going to partner’s place</span>. (2 measures)</p>
</li>
<li>
<p>Change-step turn right about (use 2 change steps). Finish facing each other. (2 measures)</p>
</li>
<li>
<p>Repeat all (A-D) finishing in proper places. (8 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4>THE <b>“LOOK”</b></h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Figure 8</h2>
<h4><b>Repeat Figure 4</b></h4>
<span class="emphasized">2:21-2:53 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with R foot, partners take <span class="emphasized">4 slow steps forward to meet at center</span>, Girl holding skirt, Boy’s hands on his waist. (2 measures)</p>
</li>
<li>
<p>Body orientation to the left and step Right foot sideward, point Left foot across R in rear and bend knees slightly, kumintang R hand, L hand on waist. <span class="emphasized">Partners stand side by side by the R shoulders and
looking at each other.</span> (1 measure)</p>
</li>
<li>
<p>Step L foot sideward, turn right about and point R across the L in rear. Bend the knees slightly, kumintang L hand, R hand on waist. Partners stand side by side by L shoulders and looking at each other. (1 measure)</p>
</li>
<li>
<p>Facing each other and starting with R foot, take <span class="emphasized">4 steps backward to proper places</span>. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>4 steps in place, starting with R foot. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>Repeat all (A-E). (8 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">
<div class="row">
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/meet-center.svg" alt="(A) Meet at Center">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(A) Meet at Center</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/look.svg" alt="(B) Look at Each Other">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(B) Look at Each Other</div>
</figcaption>
</figure>
</div>
<div class="col-md-4">
<figure>
<div class="flex justifyCenter">
<img src="./resources/ba-ingles/step-backwards.svg" alt="(C) 4 Steps Backwards">
</div>
<figcaption class="dances-step-desc">
<div class="emphasized">(C) 4 Steps Backwards</div>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<div class="flex alignCenter arrow" onclick="baIngles9()"><img src="./resources/carousel/right.svg" alt="right-arrow"></div>
</div>
<div id="baIngles-9">
<div class="flex alignCenter arrow" onclick="baIngles8()"><img src="./resources/carousel/left.svg" alt="left-arrow"></div>
<div class="container">
<div class="dances-landing">
<div class="row dances-prev">
<div class="col-md-4">
<h2>Figure 8</h2>
<h4><b>Repeat Figure 4</b></h4>
<span class="emphasized">2:21-2:53 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>Starting with R foot, partners take <span class="emphasized">4 slow steps forward to meet at center</span>, Girl holding skirt, Boy’s hands on his waist. (2 measures)</p>
</li>
<li>
<p>Body orientation to the left and step Right foot sideward, point Left foot across R in rear and bend knees slightly, kumintang R hand, L hand on waist. <span class="emphasized">Partners stand side by side by the R shoulders and
looking at each other.</span> (1 measure)</p>
</li>
<li>
<p>Step L foot sideward, turn right about and point R across the L in rear. Bend the knees slightly, kumintang L hand, R hand on waist. Partners stand side by side by L shoulders and looking at each other. (1 measure)</p>
</li>
<li>
<p>Facing each other and starting with R foot, take <span class="emphasized">4 steps backward to proper places</span>. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>4 steps in place, starting with R foot. Hands as in (A). (2 measures)</p>
</li>
<li>
<p>Repeat all (A-E). (8 measures)</p>
</li>
</ol>
</div>
</div>
<div class="row dances-step-name">
<h4> </h4>
</div>
<div class="row">
<div class="col-md-4">
<h2>Saludo</h2>
<h4><b>Similar to Introduction </b></h4>
<span class="emphasized">2:53-3:04 on Spotify</span>
</div>
<div class="col-md-8">
<p> </p>
<ol>
<li>
<p>3-step turn right in place and <span class="emphasized">bow to partner or audience</span>, Girl holding skirt, Boy’s hands on waist. (2 measures)</p>
</li>
</ol>
</div>
</div>
</div>
<div class="dances-landing dances-step-img">