-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.php
1462 lines (1152 loc) · 91.2 KB
/
index.php
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
<?php
require_once('./dbconn.php');
?>
<!DOCTYPE html>
<html lang="en-US">
<head>
<title>brazilianbloopers</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="apple-mobile-web-app-capable" content="yes" />
<!-- JQuery -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.5.0/jquery.min.js"></script>
<!-- JQuery UI -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js" integrity="sha256-KM512VNnjElC30ehFwehXjx1YCHPiQkOPmqnrWtpccM=" crossorigin="anonymous"></script>
<!-- Load an icon library for burger menu on small screens -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<!--BOOTSTRAP-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/js/bootstrap.min.js" integrity="sha384-B4gt1jrGC7Jh4AgTPSdUtOBvfO8shuf57BaghqFfPlYxofvL8/KUEfYiJOMMV+rV" crossorigin="anonymous"></script>
<!-- My CSS -->
<link rel="stylesheet" href="styles.css">
<!--Londrina Font-->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.0/css/all.css" integrity="sha384-lZN37f5QGtY3VHgisS14W3ExzMWZxybE1SJSEsQp9S+oqd12jhcu+A56Ebc1zFSJ" crossorigin="anonymous">
<link href="https://fonts.googleapis.com/css2?family=Londrina+Solid:wght@300&display=swap" rel="stylesheet">
<!--SweetAlert2 -->
<script src="https://cdn.jsdelivr.net/npm/sweetalert2@9"></script>
<link href="sweetalert2/dist/sweetalert2.all.min.js"></script>
<!-- Optional: include a polyfill for ES6 Promises for IE11 -->
<script src="https://cdn.jsdelivr.net/npm/promise-polyfill@8/dist/polyfill.js"></script>
<!--Babel, Moment, Rome-->
<script src="https://unpkg.com/babel-polyfill@6.2.0/dist/polyfill.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.24.0/moment-with-locales.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/rome/3.0.2/rome.standalone.js"></script>
<!--Popper-->
<script href="https://unpkg.com/@popperjs/core@2"></script>
<!-- FontAwesome-->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body>
<div class="tabs">
<a id="defaultOpen" class="tablink" onclick="openPage('Home', this);"><span class="link link--elara">Home</span></a>
<div id="myLinks">
<a class="tablink" onclick="openPage('About', this);"><span class="link link--elara">About</span></a>
<a class="tablink" onclick="openPage('Quiz', this);"><span class="link link--elara">Quiz</span></a>
<a class="tablink" onclick="openPage('Contact', this);"><span class="link link--elara">Contact</span></a>
<div class="dropdown">
<p class="drop_btn"><img src="pics/EUA.png" id="eng_btn_e" alt="American_flag">
<i class="fas fa-angle-down" style="margin-left: 5px;"></i></p>
<div class="dropdown-content">
<img src="pics/BRASIL.png" id="port_btn_e" alt="Portuguese_flag">
</div>
</div>
</div>
<img src="pics/logo.png" id="logo_main" class="logo" alt="logo_boy">
<!-- "burger menu" -->
<a href="javascript:void(0);" class="icon" onclick="myBurger()">
<i class="fa fa-bars"></i></a>
</div>
<!-- <img class="test-vector" src="pics/test-vector.png" alt=""> -->
<div id="Home" class="tabcontent">
<div class="container" id="home">
<div class="homehead--center">
<div class="homehead--center--text" id="text--1">Hello,</div><br>
<div class="homehead--center--text" id="text--2">Welcome to Brazilian Bloopers.</div><br>
<div class="homehead--center--text" id="text--3">Here we tell you what gives you away as a Brazilian.</div>
</div>
</div>
<a href="#" onclick="openPage('About', this);"><i id="arrow-1" class="fas fa-angle-right" style="font-size: 5vw; display: none"></i></a>
</div>
<!-- <div class="plyr__video-embed" id="player">
<iframe
src="https://www.youtube.com/embed/bTqVqk7FSmY?origin=https://plyr.io&iv_load_policy=3&modestbranding=1&playsinline=1&showinfo=0&rel=0&enablejsapi=1"
allowfullscreen
allowtransparency
allow="autoplay"
></iframe>
</div> -->
<!-- <iframe allow="autoplay; fullscreen" allowfullscreen="" frameborder="0" height="564" id="vid" src="https://www.youtube.com/embed/YOUR_VIDEO_ID?autoplay=1&version=3&enablejsapi=1&showinfo=0&controls=0&rel=0&showinfo=0&disablekb=1&iv_load_policy=3&modestbranding=1" width="640"></iframe> -->
</div>
<div id="About" class="tabcontent">
<div class="container" id="about_us">
<fieldset class="field_about">
<h4 class="leg_highlight" id="leg_high_1">About Us</h4>
<p class="al_left">We are a couple of English teachers based in Brasília, Brazil, who are determined to sharpen your skills. We've compiled this quiz based on years of experience.<br>One day, fascinated by various "Brazilianisms" students kept throwing at our ears, we decided this phenomenon deserves its own website. Thus, the project Brazilian Bloopers came to life.</p>
</fieldset>
</div>
<div class="container">
<fieldset class="field_about">
<h4 class="leg_highlight" id="leg_high_2">About the Bloopers</h4>
<p class="al_left">Let's face it. Learning another language and communicating your ideas in it, is no easy feat. English, however omnipresent in this world, is no exception. We're here to help a little with that.<br>If you look up the English definition of the word <a href="https://www.dictionary.com/browse/blooper" class="link link--elara" target="_blank"><span>'blooper'</span></a> you'll get "an embarassing error you make publicly". Although we don't think the mistakes you'll find here are that bad, we do believe correcting them is a great step forward in your language learning journey.<br> Check out the example of a blooper<a href="#examples" id="a_examples" class="link link--elara"><span> here.</span></a></p>
</fieldset>
</div>
<div class="container" id="about_qz">
<fieldset class="field_about">
<h4 class="leg_highlight" id="leg_high_3">About the Quiz</h4>
<p class="al_left"> The quiz is in English only, because you can't have it too easy, can you? The survey however, is offered in both English and Portuguese. The quiz consists of false cognates, idiomatic expressions, incomplete phrases, etc. You will be presented with a series of dialogues. You have to use your judgement when picking the only one correct answer.<br><br> There are 30 questions which vary in difficulty. Some mistakes are more common and some less frequent but all of them share the peculiarity of the Portuguese language that does not translate well into English. Even though many of the bloopers are intelligible to native English speakers, you would be better off finding a more common alternative.<br><br> After you finish, make sure to check the explanation section which is under each question. This section is where we put most work in this project. We hope you'll find it useful. <br>One last thing - remember not to be be too hard on yourself - It's okay if you have a piece of Brazil that never leaves your brain, plus why not let the gringos do some thinking?<br><br>Don't forget to enjoy the process! <br><br><a href="#" class="link link--elara" style="font-size: 1em;" onclick="openPage('Quiz', this);">Ready?</a></p>
</fieldset>
</div>
<div class="container">
<a id="examples"></a>
<h4 class="leg_highlight">Example of a Brazilian Blooper in a casual dialogue:</h4>
<br><br><p>A) Did you like your trip?</p><br><p style="margin-top: -20px;">B) <span class="error_style"><em>More or less.</em></span></p><br><p style="margin-top: -20px;">A) Hmmm...🤔</p>
<p class="al_left"> <span class="span_exp">Explanation:</span> In English we generally say "More or Less" to use it as an approximation of numbers, quantities, etc. Ex. "It will cost you 40 reais, more or less."<br><br>We don't answer with "more or less" only to express value or our impression of something. If you thought the above mentioned trip could have been better, you answer "Not much". If you thought it could have been worse, you answer "It was okay." You should remember that answers like this are hugely context dependent, meaning, you will have to explain what you mean in more detail.</p>
</div>
</div> <!-- About -->
<div id="Quiz" class="tabcontent">
<div class="container" id="steps">
<h4 id="leg_steps">Follow these 3 simple steps:</h4>
<div id="remove_steps">
<p id="click_survey">1. First, fill out our spectacularly short survey.</p>
<button id="start_survey" class="hvr-grow" data-popup-open="popup-1">Survey</button>
</div>
<p id="click_start">2. Then, Click the "Start" button to begin the quiz.</p><br>
<button id="start_quiz" class="hvr-grow" data-popup-open="popup-2"><span id="start_span">Start</span></button>
<p id="have_fun">3. Have fun!</p>
</div>
<!--SURVEY-->
<div class="popup" id="survey_popup" data-popup="popup-1">
<div class="popup-inner">
<a class="popup-close" id="popup_close_1" data-popup-close="popup-1" href="#">x</a>
<form id="survey" method="post" action="actions.php">
<div id="surv_port">
<div id="question_1" class="cont_surv">
<p id="surv_q1" class="surv_ques"><label id="bor_gender">1) What gender are you?<span id="span_gender" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="male" class="radios" name="gender" value="male"><label for="male"> Male</label><br>
<input type="radio" id="female" class="radios" name="gender" value="female"><label for="female"> Female</label><br>
<input type="radio" id="other" class="radios" name="gender" value="other"><label for="other"> Other</label><br>
</div>
<div id="question_2" class="cont_surv">
<p id="surv_q2" class="surv_ques"><label id="bor_age">2) How old are you?<span id="span_age" style="color:#ff0000"></span></label></p><br>
<select id="age" name="ageselect">
<option id="opt" value="0">Select</option>
</select>
</div>
<div id="question_3" class="cont_surv">
<p id="surv_q3" class="surv_ques"><label id="bor_years">3) English student for<span id="span_years" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="y1" class="radios" name="years" value=">_2"><label for="y1"> 0-2years</label><br>
<input type="radio" id="y2" class="radios" name="years" value="2-5"><label for="y2"> 2-5years</label><br>
<input type="radio" id="y3" class="radios" name="years" value="5-10"><label for="y3"> 5-10years</label><br>
<input type="radio" id="y4" class="radios" name="years" value="10_<"><label for="y4"> 10+ years</label><br>
<input type="radio" id="y5" class="radios" name="years" value="never_studied"><label for="y5"> never studied</label>
</div>
<div id="question_4" class="cont_surv">
<p id="surv_q4" class="surv_ques"><label id="bor_abroad">4) Experience abroad<span id="span_abroad" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="abr1" class="radios" name="abroad" value=">_year"><label for="abr1"> less than a year</label><br>
<input type="radio" id="abr2" class="radios" name="abroad" value="1-3_years"><label for="abr2"> 1-2 years</label><br>
<input type="radio" id="abr3" class="radios" name="abroad" value="3-6_years"><label for="abr3"> 3-5 years</label><br>
<input type="radio" id="abr4" class="radios" name="abroad" value="6-10_years"><label for="abr4"> 6-10 years</label><br>
<input type="radio" id="abr5" class="radios" name="abroad" value="10_<"><label for="abr5"> 10+ years</label><br>
<input type="radio" id="abr6" class="radios" name="abroad" value="never_abroad"><label for="abr6"> never lived abroad</label>
</div>
<div id="question_5" class="cont_surv">
<p id="surv_q5" class="surv_ques"><label id="bor_way">5) How do you learn?<span id="span_way" style="color:#ff0000"><br></span></label></p><br>
<input type="checkbox" id="way1" class="check" name="way[]" value="g_course"><label for="way1"> group course</label><br>
<input type="checkbox" id="way2" class="check" name="way[]" value="private_teacher"><label for="way2"> private teacher</label><br>
<input type="checkbox" id="way3" class="check" name="way[]" value="self_taught"><label for="way3"> self-taught</label><br>
<input type="checkbox" id="way4" class="check" name="way[]" value="apps"><label for="way4"> apps</label><br>
<input type="checkbox" id="way5" class="check" name="way[]" value="video_games"><label for="way5"> video games</label><br>
<input type="checkbox" id="way6" class="check" name="way[]" value="other"><label for="way6"> other</label>
</div>
<div id="question_6" class="cont_surv">
<p id="surv_q6" class="surv_ques"><label id="bor_others">6) Foreign languages<span id="span_others" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="oth1" class="radios" name="others" value="one"><label for="oth1"> One</label><br>
<input type="radio" id="oth2" class="radios" name="others" value="two"><label for="oth2"> Two</label><br>
<input type="radio" id="oth3" class="radios" name="others" value="polyglot"><label for="oth3"> I'm a polyglot</label>
</div>
<div id="question_7" class="cont_surv">
<p id="surv_q7" class="surv_ques"><label id="bor_country">7) Where do you live?<span id="span_country" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="ctr1" class="radios" name="country" value="brazil"><label for="ctr1"> Brazil</label><br>
<input type="radio" id="ctr2" class="radios" name="country" value="abroad"><label for="ctr2"> Abroad</label>
</div>
</div>
<div>
<button id="submit_survey" class="hvr-grow" type="submit" name="submitsurvey">Submit</button>
</div>
</form>
</div>
</div>
<!--QUIZ-->
<div class="popup" data-popup="popup-2">
<div class="popup-inner" id="inner_2">
<form id="quiz_form" method="post" action="actions.php">
<div id="1" class="questions">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p id="sit1" class="situation"> 1 out of 30</p>
<p>Milene: How is the weather today?</p>
<p>Camile:<span class="error_style"><em> Is hot!</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div id="prog_1" class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="i_1" class="rads" name="sub_it" value="err_ok"><label for="i_1" class="err_label"> It hot!</label>
<div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="i_2" class="rads" name="sub_it" value="corr"><label for="i_2"> It is hot!</label>
<div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="i_3" class="rads" name="sub_it" value="err_2"><label for="i_3" class="err_label"> Is it hot!</label>
<div class="d_err" style="display:none"> <i class="fas fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_1" style="display:none">
<p class="par_exp"><span class="span_exp">Explanation</span>: In English every sentence needs a subject (He, She, It etc).<br>Ex. "It is important to drive responsibly."<br>Ex. "It doesn't rain much in Brasilia."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_1">Your score: </h4>
</div>
</div>
</div>
<button id="next_1" class="next">Next</button>
</div>
<div id="2" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p id="sit2" class="situation">2 out of 30</p>
<p>Tiago: How was the party?</p>
<p>Magda: Oh, <span class="error_style"><em>it was too good</em></span>. I danced all night.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="t_1" class="rads" name="too" value="corr"><label for="t_1"> it was very good.</label>
<div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="t_2" class="rads" name="too" value="err_ok"><label for="t_2" class="err_label"> it were very good.</label>
<div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="t_3" class="rads" name="too" value="err_2"><label for="t_3" class="err_label"> it was to good.</label>
<div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_2" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: Use "Too + adjective" to express negative excess, which makes something impossible to happen. Ex."Mexican food is too spicy. We can't eat it!"</p><br>Use "Very + adjective" to intensify something. Ex."Mexican food is very spicy. We love it!".
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_2">Your score: </h4>
</div>
</div>
</div>
<button id="next_2" class="next">Next</button>
<button id="back_2" class="back">Back</button>
</div>
<div id="3" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p id="sit3" class="situation">3 out of 30</p>
<p>Rudolfo: Do you like your teacher?</p>
<p>Pedro: Yes, <span class="error_style"><em>She has much patience</em></span> with me.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="m_1" class="rads" name="much" value="err_2"><label for="m_1" class="err_label"> a lot patience</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="m_2" class="rads" name="much" value="corr"><label for="m_2"> a lot of patience</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="m_3" class="rads" name="much" value="err_ok"><label for="m_3" class="err_label"> a lot off patience</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_3" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We use "Much" in interrogative and negative sentences. Ex."How much water do you drink? I don't drink much water." "Much" is also used in affirmative sentences when accompanied by "very", "so" or "too". Ex. "I like socccer very/so much." or "You're a workaholic, you work too much"</p> <br> To express big quantity in affirmative sentences, we use "A lot of" or "Lots of". Ex."There is a lot of/ lots of pollution in China."
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_3">Your score: </h4>
</div>
</div>
</div>
<button id="next_3" class="next">Next</button>
<button id="back_3" class="back">Back</button>
</div>
<div id="4" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">4 out of 30</p>
<p>Lívia: Do you want to see a movie?</p>
<p>Alex: Sure,<span class="error_style"><em> have many</em></span> good films on Netflix.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="ex_1" class="rads" name="exist" value="err_ok"><label for="ex_1" class="err_label"> they are many</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="ex_2" class="rads" name="exist" value="corr"><label for="ex_2"> there are many</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="ex_3" class="rads" name="exist" value="err_2"><label for="ex_3" class="err_label"> has many</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_4" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We don't say "have" to express that something exists. Before "have", there's always a subject. Ex. "We have 2 cars". <br>Use "There is/are" to express that something exists. Ex. "There is a good restaurant in my block."<br>Ex."There are beautiful beaches in Brazil."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_4">Your score: </h4>
</div>
</div>
</div>
<button id="next_4" class="next">Next</button>
<button id="back_4" class="back">Back</button>
</div>
<div id="5" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">5 out of 30</p>
<p>Sylvio: What's your mother's profession?</p>
<p>Cristiano:<span class="error_style"><em> My mother, she is a dentist.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="tw_1" class="rads" name="two_sub" value="err_2"><label for="tw_1" class="err_label"> my mother dentist</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="tw_2" class="rads" name="two_sub" value="corr"><label for="tw_2"> my mother is a dentist</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="tw_3" class="rads" name="two_sub" value="err_ok"><label for="tw_3" class="err_label"> my mother's is a dentist</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_5" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: Only one subject is sufficient.<br>Ex."My brother is a student." or "He is a student."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_5">Your score: </h4>
</div>
</div>
</div>
<button id="next_5" class="next">Next</button>
<button id="back_5" class="back">Back</button>
</div>
<div id="6" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">6 out of 30</p>
<p>Maurício: Did you like the movie?</p>
<p>Beata: Yes,<span class="error_style"><em> I liked.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="ob_1" class="rads" name="no_obj" value="corr"><label for="ob_1"> I liked it</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="ob_2" class="rads" name="no_obj" value="err_ok"><label for="ob_2" class="err_label"> I liked this</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="ob_3" class="rads" name="no_obj" value="err_2"><label for="ob_3" class="err_label"> I liked its</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_6" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: There are transitive and intransitive verbs in English. Intransitive verbs don't need an object. Examples of intransitive verbs: die, fly, happen, sleep.<br> Ex."Birds fly", Ex."Shit happens."<br>Transitive verbs, on the other hand, are followed by an object or object pronoun (it, him, her, etc). Commmon transitive verbs are: like, make, use, want. Ex."Did you use the pen? Yes, I used "it". <br>Ex. "Don't worry about the cake, I'll make "it".
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_6">Your score: </h4>
</div>
</div>
</div>
<button id="next_6" class="next">Next</button>
<button id="back_6" class="back">Back</button>
</div>
<div id="7" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">7 out of 30</p>
<p>Cláudio: Where were you?</p>
<p>Natália: I went to the store<span class="error_style"><em> for buy some milk.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="for_1" class="rads" name="for" value="err_ok"><label for="for_1" class="err_label"> to buying some milk</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="for_2" class="rads" name="for" value="corr"><label for="for_2"> to buy some milk</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="for_3" class="rads" name="for" value="err_2"><label for="for_3" class="err_label"> for to buy some milk</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_7" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "in order to" or simply 'to' to express purpose/objective. Ex."She saves money in order to travel." or "She saves money to travel."<br> The preposition "to" is followed by infinitive verbs, while the preposition "for" is followed by nouns. Compare: "She went online to look for information" x "She went online for some information"</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_7">Your score: </h4>
</div>
</div>
</div>
<button id="next_7" class="next">Next</button>
<button id="back_7" class="back">Back</button>
</div>
<div id="8" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">8 out of 30</p>
<p>Joe: How old are you?</p>
<p>Camilo:<span class="error_style"><em> I have 39 years.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="age_1" class="rads" name="h_age" value="corr"><label for="age_1"> I am 39.</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="age_2" class="rads" name="h_age" value="err_2"><label for="age_2" class="err_label"> I have 39.</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="age_3" class="rads" name="h_age" value="err_ok"><label for="age_3" class="err_label"> I am 39 years</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_8" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We use the verb "To be" to inform our age.<br> Ex."She is 25."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_8">Your score: </h4>
</div>
</div>
</div>
<button id="next_8" class="next">Next</button>
<button id="back_8" class="back">Back</button>
</div>
<div id="9" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">9 out of 30</p>
<p>Steven: Hi, Marcel!.</p>
<p>Marcel: <span class="error_style"><em>Hey, guy. </em></span>How are you?</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="guy_1" class="rads" name="guy" value="err_ok"><label for="guy_1" class="err_label"> Hey, face.</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="guy_2" class="rads" name="guy" value="err_2"><label for="guy_2" class="err_label"> Hey, male.</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="guy_3" class="rads" name="guy" value="corr"><label for="guy_3"> Hey, man.</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_9" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: One of the ways to greet someone informally is "Hey man". We don't use "Hey guy" in English.</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_9">Your score: </h4>
</div>
</div>
</div>
<button id="next_9" class="next">Next</button>
<button id="back_9" class="back">Back</button>
</div>
<div id="10" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">10 out of 30</p>
<p>Marília: What kind of things do you like?</p>
<p>Gabriel: I'm a typical guy.<span class="error_style"><em> I like car.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="act_1" class="rads" name="car" value="err_ok"><label for="act_1" class="err_label"> I liked car</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="act_2" class="rads" name="car" value="corr"><label for="act_2"> I like cars</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="act_3" class="rads" name="car" value="err_2"><label for="act_3" class="err_label"> I like a car</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_10" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: When we talk about objects in general, we use the plural form of countable nouns. Ex."I like films."<br>We use the singular form of countable nouns when we refer to a specific object, Ex. "I like this film" or, when we refer to a singular object. Ex. "I want to see a film tonight".</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_10">Your score: </h4>
</div>
</div>
</div>
<button id="next_10" class="next">Next</button>
<button id="back_10" class="back">Back</button>
</div>
<div id="11" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">11 out of 30</p>
<p>Rogério: What time do I have to be at the airport?</p>
<p>Sansa: 3.30. Hurry up or you will <span class="error_style"><em>lose your flight.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="los_1" class="rads" name="lose" value="err_2"><label for="los_1" class="err_label"> lost your flight</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="los_2" class="rads" name="lose" value="corr"><label for="los_2"> miss your flight</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="los_3" class="rads" name="lose" value="err_ok"><label for="los_3" class="err_label"> loose your flight</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_11" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "To miss + object" when something is gone and it will not come back. Ex. "I missed my bus, I will take another one tomorrow."<br>We say "To lose + object" when soemthing belongs to us and we don't know where it is, but there is a chance we will find it. Ex. "I lost my keys/glasses last week."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_11">Your score: </h4>
</div>
</div>
</div>
<button id="next_11" class="next">Next</button>
<button id="back_11" class="back">Back</button>
</div>
<div id="12" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">12 out of 30</p>
<p>Sabrina: Why are you nervous?</p>
<p>Nando:<span class="error_style"><em> I discussed with Marta</em></span> about politics.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="diss_1" class="rads" name="diss" value="err_ok"><label for="diss_1" class="err_label"> I discussed Marta</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="diss_2" class="rads" name="diss" value="err_2"><label for="diss_2" class="err_label"> I was discussing with Marta</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="diss_3" class="rads" name="diss" value="corr"><label for="diss_3"> I argued with Marta</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_12" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "To discuss" if we talk about something with somebody in detail. Ex. "My friend works for the United Nations. She discusses important topics with her bosses".<br> We say "To argue" when we talk angrily about something with someone. Ex."He argued with his parents about house chores."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_12">Your score: </h4>
</div>
</div>
</div>
<button id="next_12" class="next">Next</button>
<button id="back_12" class="back">Back</button>
</div>
<div id="13" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">13 out of 30</p>
<p>Teacher: What's the matter?</p>
<p>Student: <span class="error_style"><em>I have a doubt</em></span> about the homework.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="doub_1" class="rads" name="doubt" value="err_2"><label for="doub_1" class="err_label"> I have question</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="doub_2" class="rads" name="doubt" value="err_ok"><label for="doub_2" class="err_label"> I have doubt</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="doub_3" class="rads" name="doubt" value="corr"><label for="doub_3"> I have a question</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_13" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: Use "I am in doubt" when you cannot decide about something. Ex. "What should I choose next semester: biology or chemistry? I am in doubt!".<br>Use "I have a question" or "I'm not sure about something" when you want to ask a teacher for help. We don't say "I have a doubt" in English.</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_13">Your score: </h4>
</div>
</div>
</div>
<button id="next_13" class="next">Next</button>
<button id="back_13" class="back">Back</button>
</div>
<div id="14" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial" id="dial_14">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation" id="sit_14">14 out of 30</p>
<p>Márcia: Who were you talking to?</p>
<p>Fátima: Paulo. <span class="error_style"><em>I knew him</em></span> last week at the gym.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="met_1" class="rads" name="know" value="err_ok"><label for="met_1" class="err_label"> I meat him</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="met_2" class="rads" name="know" value="corr"><label for="met_2"> I met him</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="met_3" class="rads" name="know" value="err_2"><label for="met_3" class="err_label"> I known him</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_14" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "I know someone" when you mean you are familar with a person, place, or a thing. Ex. "I know the mayor." We say "I knew someone" when you had a past relationship with someone or something but you don't have it anymore. Ex."I knew her in high school. She was popular."<br>We usually say "I met someone" when we interact with someone whom we do not know. Ex."I met him in France on my vacation." Ex. "I'm a journalist so I meet many interesting people."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_14">Your score: </h4>
</div>
</div>
</div>
<button id="next_14" class="next">Next</button>
<button id="back_14" class="back">Back</button>
</div>
<div id="15" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial" id="dial_15">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">15 out of 30</p>
<p>Vitor: Are you okay? What happened?</p>
<p>Gui: My sister had an accident!<span class="error_style"><em> Thanks God </em></span> she's alright.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer" id="answer_15">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="god_1" class="rads" name="god" value="corr"><label for="god_1"> Thank God she's alright</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="god_2" class="rads" name="god" value="err_2"><label for="god_2" class="err_label"> Thanks, she alright</label>
<div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="god_3" class="rads" name="god" value="err_ok"><label for="god_3" class="err_label"> Thank Gods she's alright</label>
<div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_15" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We use the expression "Thank God" when we express relief. We don't add "s" to "God" as we don't add "s" to "you" when we say "Thank you!"</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_15">Your score: </h4>
</div>
</div>
</div>
<button id="next_15" class="next">Next</button>
<button id="back_15" class="back">Back</button>
</div>
<div id="16" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">16 out of 30</p>
<p>Carla: Do you like pizza?</p>
<p>Joana: Oh, Yeah!<span class="error_style"><em> it's my preferred</em></span> food.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="pref_1" class="rads" name="pref" value="err_2"><label for="pref_1" class="err_label"> it's my favor</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="pref_2" class="rads" name="pref" value="err_ok"><label for="pref_2" class="err_label"> it's my preference</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="pref_3" class="rads" name="pref" value="corr"><label for="pref_3"> it's my favorite</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_16" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "Favorite" when we mean we like, have affection for someone or something more than others. Ex."Roger Federer is my favorite tennis player."<br> We use "Preferred" as past of verb "To prefer" only.</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_16">Your score: </h4>
</div>
</div>
</div>
<button id="next_16" class="next">Next</button>
<button id="back_16" class="back">Back</button>
</div>
<div id="17" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">17 out of 30</p>
<p>Ana: Did your friend enjoy Rio?</p>
<p>Miguel: Yes, but<span class="error_style"><em> she was impressed with</em></span> the violence.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="imp_1" class="rads" name="impress" value="err_2"><label for="imp_1" class="err_label"> she shocked with</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="imp_2" class="rads" name="impress" value="err_ok"><label for="imp_2" class="err_label"> she impressed</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="imp_3" class="rads" name="impress" value="corr"><label for="imp_3"> she was shocked by</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_17" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We are "Impressed" when somebody or something arouses our interest or admiration. Ex."Messi's skills are impressive."<br> We can say "shocked" when someone or something makes us surprised in a negative or threatening way. Ex."He was shocked by the stock market crash."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_17">Your score: </h4>
</div>
</div>
</div>
<button id="next_17" class="next">Next</button>
<button id="back_17" class="back">Back</button>
</div>
<div id="18" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">18 out of 30</p>
<p>Gustavo: I'd like to visit Italy.</p>
<p>Erik: Me too, I have a lot of <span class="error_style"><em>parents there.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="par_1" class="rads" name="parent" value="err_2"><label for="par_1" class="err_label"> parent there</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="par_2" class="rads" name="parent" value="err_ok"><label for="par_2" class="err_label"> families there</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="par_3" class="rads" name="parent" value="corr"><label for="par_3"> relatives there</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_18" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "Parents" when we mean our mother and father only. Ex. "My parents' names are Teresa and Mike."<br> We say "Relatives" when we mean extended family. Ex."I have relatives all over the world, mostly cousins."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_18">Your score: </h4>
</div>
</div>
</div>
<button id="next_18" class="next">Next</button>
<button id="back_18" class="back">Back</button>
</div>
<div id="19" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">19 out of 30</p>
<p>Dani: Are you free at 6?</p>
<p>Carlos: No, <span class="error_style"><em>I go out from work</em></span> at 7.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="go_1" class="rads" name="gout" value="corr"><label for="go_1"> I leave work</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="go_2" class="rads" name="gout" value="er_2"><label for="go_2" class="err_label"> I go off work</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="go_3" class="rads" name="gout" value="err_ok"><label for="go_3" class="err_label"> I live work</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_19" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "To leave" when we mean to exit a place, relationship, group, etc. Ex. "I leave class earlier on Fridays because I have to catch a bus." Ex. "She left her marriage due to his gambling habit."<br>We say "To go out" when we mean going to a bar, a restaurant, etc, to drink, eat, talk and have fun. Ex."Young people love to go out on weekends."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_19">Your score: </h4>
</div>
</div>
</div>
<button id="next_19" class="next">Next</button>
<button id="back_19" class="back">Back</button>
</div>
<div id="20" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">20 out of 30</p>
<p>Magda: Do you enjoy working from home?</p>
<p>Alex: Yes, I don't have to<span class="error_style"><em> use a suit.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="use_1" class="rads" name="use" value="err_2"><label for="use_1" class="err_label"> put a suit</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="use_2" class="rads" name="use" value="corr"><label for="use_2"> wear a suit</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="use_3" class="rads" name="use" value="err_ok"><label for="use_3" class="err_label"> take a suit</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_20" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "To use" when we do something with an object in order to do a job or solve a problem. Ex."I use a blowdryer to dry my hair."<br> We say "To wear" when we have something on our body. Ex."She wears a lot of makeup." Ex."My friend wears braces."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_20">Your score: </h4>
</div>
</div>
</div>
<button id="next_20" class="next">Next</button>
<button id="back_20" class="back">Back</button>
</div>
<div id="21" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">21 out of 30</p>
<p>Suzy: Hey, Mariana. How are you?</p>
<p>Mariana: I'm tired, I've studied<span class="error_style"><em> during 3 hours.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="stu_1" class="rads" name="durat" value="err_ok"><label for="stu_1" class="err_label"> during for 3 hours</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="stu_2" class="rads" name="durat" value="corr"><label for="stu_2"> for 3 hours</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<input type="radio" id="stu_3" class="rads" name="durat" value="err_2"><label for="stu_3" class="err_label"> at 3 hours</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<div class="exp" id="exp_21" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "For" when we refer to the duration of an activity, usually followed by numbers. Ex. "I lived in the States for 7 years."<br> We say "During" when we refer to events or periods of time. Ex. "I've read a lot during the pandemic." "She slept during the conference."</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_21">Your score: </h4>
</div>
</div>
</div>
<button id="next_21" class="next">Next</button>
<button id="back_21" class="back">Back</button>
</div>
<div id="22" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">22 out of 30</p>
<p>Jackie: How was training today?</p>
<p>Juliano: Good, but<span class="error_style"><em> I stayed tired</em></span> quickly.</p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="sta_1" class="rads" name="stay" value="err_ok"><label for="sta_1" class="err_label"> I stay tire</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="sta_2" class="rads" name="stay" value="err_2"><label for="sta_2" class="err_label"> I became tired</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="sta_3" class="rads" name="stay" value="corr"><label for="sta_3"> I got tired</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_22" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>:Use "Stay + adjective" or "Feel + adjective" to express continuity of a state. You may say "stay tired" if you remain in the need of rest, chronically feel tired. Ex. "I eat and sleep well but I stay (feel) tired most of the day." However, "Feel tired" is more common.<br> Use "Get + Adjective" to express a temporary change of state. Ex. "I got angry in traffic, but I'm calmer now".</p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_22">Your score: </h4>
</div>
</div>
</div>
<button id="next_22" class="next">Next</button>
<button id="back_22" class="back">Back</button>
</div>
<div id="23" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">23 out of 30</p>
<p>Tony: How do you feel?</p>
<p>Rafael: Not well.<span class="error_style"><em> I'm with a headache.</em></span></p>
</div>
<div class="progress" style="height: 0.5rem">
<div class="progress-bar" role="progressbar" aria-valuenow="70" aria-valuemin="0" aria-valuemax="100">
</div>
</div>
<div class="cont_answer">
<p class="p_corr"><label class="bor_choose">What is correct?<span class="span_choose" style="color:#ff0000"></span></label></p><br>
<input type="radio" id="wit_1" class="rads" name="with" value="err_2"><label for="wit_1" class="err_label"> I'm a headache</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="wit_2" class="rads" name="with" value="err_ok"><label for="wit_2" class="err_label"> I'm headache</label><div class="d_err" style="display:none"> <i class="fa fa-times" aria-hidden="true"></i></div><br>
<input type="radio" id="wit_3" class="rads" name="with" value="corr"><label for="wit_3"> I have a headache</label><div class="d_corr" style="display:none"> <i class="fas fa-check"></i></div><br>
<div class="exp" id="exp_23" style="display:none"><p class="par_exp"><span class="span_exp">Explanation</span>: We say "To have a headache" or any kind of pain or disease. Ex. "Jonh had a stomachache after he ate those grapes." Ex."Luis has a fever."<br> We can use the preposition "with + health condition" only if it's preceded by a verb phrase. Ex. "To be coming down with a flu" or "He was hospitalized with Covid" </p>
<div class="resultMsg">
<h4 class="scoreInfo" id="scoreInfo_23">Your score: </h4>
</div>
</div>
</div>
<button id="next_23" class="next">Next</button>
<button id="back_23" class="back">Back</button>
</div>
<div id="24" class="questions" style="display: none;">
<a class="popup-close-fake" href="#">x</a>
<div class="cont_dial">
<img src="pics/logo.png" class="logo_quiz" alt="logo_boy">
<p class="situation">24 out of 30</p>
<p>Luiza: What did you do last night?</p>
<p>Breno: I saw 3<span class="error_style"><em> chapters</em></span> of "Breaking Bad".</p>