-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathctest.html
1828 lines (1672 loc) · 29.4 KB
/
ctest.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
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>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>First Gen</title>
<link href='https://fonts.googleapis.com/css?family=Raleway' rel='stylesheet'>
<link rel="stylesheet" href="t.css">
<style>
button.accordion {
background-color: #f7a7a6;
color: #444;
cursor: pointer;
padding: 10px;
width: 100%;
border: none;
text-align: left;
outline: none;
font-size: 15px;
transition: 0.4s;
}
button.accordion.active, button.accordion:hover {
background-color: #f7a7a6;
}
button.accordion:after {
content: '\002B';
color: #f7a7a6;
font-weight: bold;
float: right;
margin-left: 10px;
}
button.accordion.active:after {
content: "\2212";
}
div.panel {
padding: 10 10px;
background-color: #f48b94;
max-height: 0;
overflow: hidden;
transition: max-height 0.2s ease-out;
}
</style>
</head>
<body>
<ul> <!--- navigation bar -->
<li><a href = "homepage.html" >home</a></li>
<li><a href = "steps.html" >road to citizenship</a></li>
<li><a href = "know.html" >what you need to know</a></li>
<li><a href = "ctest.html" >citizenship test</a></li>
<li><a href = "why.html" >why act now</a></li>
<li><a href = "adjustment.html" >adjustments</a></li>
<li><a href = "firstgen.html" >4 the first gen</a></li>
<li><a href = "charities.html" >charities we ♡</a></li>
</ul>
<header class="header" id="top">
<div class="text-vertical-center">
<h1>Citizenship Test</h1>
<br>
</div>
</header>
<table>
<tr>
<td height = "10"><center><h1>Civics Test</h1></center><p>
<p> During your interview, you will be asked up to 10 questions from a list of 100 questions (listed below). You must answer 6 out of the 10 questions to pass the civics test. Because the entire naturalization interview is oral, we've provided the possible 100 questionsn and their answers for practice! </p>
<button class="accordion">1. What is the supreme law of the land?</button>
<div class="panel">
<p>
the Constitution
</p>
</div>
<button class="accordion">2. What does the Constitution do? </button>
<div class="panel">
<p>
-sets up the government <br>
-defines the government <br>
-protects basic rights of Americans<br>
</p>
</div>
<button class="accordion">3. The idea of self-government is in the first three words of the Constitution. What are these words? </button>
<div class="panel">
<p>
We the People
</p>
</div>
<button class="accordion">4. What is an amendment? </button>
<div class="panel">
<p>
- a change (to the Constitution)
- an addition (to the Constitution)
</p>
</div>
<button class="accordion">5. What do we call the first ten amendments to the Constitution? </button>
<div class="panel">
<p>
The Bill of Rights
</p>
</div>
<button class="accordion">6. What one right or freedom from the First Amendment?</button>
<div class="panel">
<p>
- speech <br>
- religion <br>
- assembly <br>
- press <br>
- petition the government
</p>
</div>
<button class="accordion">7. How many amendments does the Constitution have? </button>
<div class="panel">
<p>
- twenty-seven (27)
</p>
</div>
<button class="accordion">8. WHat did the Declaration of Independence do? </button>
<div class="panel">
<p>
- announced our independence (from Great Britain) <br>
- declared our independence (from Great Britain) <br>
- said that the United States is free (from Great Britain) <br>
</p>
</div>
<button class="accordion">9. What are two rights in the Declaration of Independence? </button>
<div class="panel">
<p>
- life <br>
- liberty <br>
- persuit of happiness <br>
</p>
</div>
<button class="accordion">10. What is freedom of religion?</button>
<div class="panel">
<p>
You can practice any religion, or not practice a religion.
</p>
</div>
<button class="accordion">11. What is the economic system in the United States </button>
<div class="panel">
<p>
- capitalist economy <br>
- market economy <br>
</p>
</div>
<button class="accordion">12. What is the "rule of law"? </button>
<div class="panel">
<p>
- everyone must follow the law <br>
- leaders must obey the law <br>
- government must obey the law <br>
- no one is above the law <br>
</p>
</div>
<button class="accordion">13. Name one branch or part of the government. </button>
<div class="panel">
<p>
- congress <br>
- legislative <br>
- president <br>
- executive <br>
- the courts <br>
- judicial <br>
</p>
</div>
<button class="accordion">14. What stops one branch of government from becoming too powerful? </button>
<div class="panel">
<p>
- checks and balances <br>
- separation of powers <br>
</p>
</div>
<button class="accordion">15. Who is in charge of the executive branch?</button>
<div class="panel">
<p>
the President
</p>
</div>
<button class="accordion">16. Who makes the federal laws? </button>
<div class="panel">
<p>
- congress <br>
- senate and house of representatives <br>
- (U.S. or national) legislative <br>
</p>
</div>
<button class="accordion">17. WHat are the two parts of teh U.S. Congress? </button>
<div class="panel">
<p>
the Senate and House of Representatives
</p>
</div>
<button class="accordion">18. How many U.S. Senators are there? </button>
<div class="panel">
<p>
100
</p>
</div>
<button class="accordion">19. We elect a U.S. Senator for how many years? </button>
<div class="panel">
<p>
6 years
</p>
</div>
<button class="accordion">20. Who is one of your state's U.S. Senators now? </button>
<div class="panel">
<p>
answers will vary! check out this website to find your state senators: <a href = "http://vote-usa.org/officials.aspx?report=u2"> </a>
</p>
</div>
<button class="accordion">21. The House of Rrepresentatives has how many voting members? </button>
<div class="panel">
<p>
435 voting members
</p>
</div>
<button class="accordion">22. We elect a U.S. Representative for how many years? </button>
<div class="panel">
<p>
2 representatives
</p>
</div>
<button class="accordion">23. Name your U.S. Representative. </button>
<div class="panel">
<p>
answers may vary! check out this website to find one of your U.S. state representatives: <a href = "https://www.house.gov/representatives/#state_me"> </a>
</p>
</div>
<button class="accordion">24. Who does a U.S. Senator represent? </button>
<div class="panel">
<p>
all people of the state
</p>
</div>
<button class="accordion">25. Why do some states have more Representatives than other states? </button>
<div class="panel">
<p>
- the state's population <br>
- they have more people <br>
- some states have more people <br>
</p>
</div>
<button class="accordion">26. We elect a President for how many years? </button>
<div class="panel">
<p>
4 years
</p>
</div>
<button class="accordion">27. In what month do we vote for President? </button>
<div class="panel">
<p>
november
</p>
</div>
<button class="accordion">28. What is the name of the President of the U.S. now? </button>
<div class="panel">
<p>
Donald Trump
</p>
</div>
<button class="accordion">29. What is the bame of the Vice President of the U.S. now? </button>
<div class="panel">
<p>
Mike Pence
</p>
</div>
<button class="accordion">30. If the President can no longer serve, who becomes President? </button>
<div class="panel">
<p>
the vice president
</p>
</div>
<button class="accordion">31. If both the President and the Vice President can no longer serve, who becomes President? </button>
<div class="panel">
<p>
the speaker of the house
</p>
</div>
<button class="accordion">32. Who is the Commander in Chief of the military? </button>
<div class="panel">
<p>
the president
</p>
</div>
<button class="accordion">33. Who signs bills to become laws? </button>
<div class="panel">
<p>
the president
</p>
</div>
<button class="accordion">34. Who vetoes bills? </button>
<div class="panel">
<p>
the president
</p>
</div>
<button class="accordion">35. What does the President's Cabinet do? </button>
<div class="panel">
<p>
advises the president
</p>
</div>
<button class="accordion">36. What are two Cabinet-level positions? </button>
<div class="panel">
<p>
- secretary of agriculture <br>
- secretary of commerce <br>
- secretary of defense <br>
- secretary of education <br>
- secretary of energy <br>
- secretary of health and human services <br>
- secretary of homeland security <br>
- secretary of housing and urban development <br>
- secretary of the interior <br>
- secretary of labor <br>
- secretary of state <br>
- secretary of transportation <br>
- secretary of the treasury <br>
- secretary of veterans affairs <br>
- attorney general <br>
- vice president <br>
</p>
</div>
<button class="accordion">37. What does the judicial branch do? </button>
<div class="panel">
<p>
- reviews laws <br>
- explains laws <br>
- resolves disputes <br>
- decides if a law goes against the Constitution <br>
</p>
</div>
<button class="accordion">38. What is the highest court in the United States? </button>
<div class="panel">
<p>
the supreme court
</p>
</div>
<button class="accordion">39. How many justices are on the Supreme Court? </button>
<div class="panel">
<p>
9
</p>
</div>
<button class="accordion">40. Who is the Chief Justice of the United States now?</button>
<div class="panel">
<p>
John Roberts
</p>
</div>
<button class="accordion">41. Under our Constitution, some powers belong to the federal government. What is one power of the federal
government? </button>
<div class="panel">
<p>
- to print money <br>
- to declare war <br>
- to create an army <br>
- to make treaties <br>
</p>
</div>
<button class="accordion">42. Under our Constitution, some powers belong to the states. What is one power of the states? </button>
<div class="panel">
<p>
- provide schooling and education <br>
- provide protection (police)<br>
- provide safety (fire department) <br>
- give a driver's license <br>
- approve zoning and land use <br>
</p>
</div>
<button class="accordion">43. Who is the Governor of your state now? </button>
<div class="panel">
<p>
answers may vary! check out this website to find the governor of your state: <a href = "https://www.nga.org/cms/governors/bios"> </a>
</p>
</div>
<button class="accordion">44. What is the capital of your state? </button>
<div class="panel">
<p>
answers may vary! check out this website to find the capital of your state: <a href "http://www.nationsonline.org/oneworld/capitals-usa.htm"> </a>
</p>
</div>
<button class="accordion">45. What are the two major political parties in the United States? </button>
<div class="panel">
<p>
democratic and republican
</p>
</div>
<button class="accordion">46. What is the political party of the President now?</button>
<div class="panel">
<p>
republican party
</p>
</div>
<button class="accordion">47. What is the name of the Speaker of the House of Representatives now? </button>
<div class="panel">
<p>
Paul Ryan
</p>
</div>
<button class="accordion">48. There are four amendments to the Constitution about who can vote. Describe one of them. </button>
<div class="panel">
<p>
- Citizens eighteen (18) and older (can vote) <br>
- You don’t have to pay (a poll tax) to vote <br>
- Any citizen can vote. (Women and men can vote <br>
- A male citizen of any race (can vote) <br>
</p>
</div>
<button class="accordion">49. What is one responsibility that is only for United States citizens? </button>
<div class="panel">
<p>
- serve on a jury <br>
- vote in a federal election <br>
</p>
</div>
<button class="accordion">50. Name one right only for United States citizens. </button>
<div class="panel">
<p>
- vote in a federal election<br>
- run for federal office <br>
</p>
</div>
<button class="accordion">51. What are two rights of everyone living in the United States? </button>
<div class="panel">
<p>
- freedom of expression <br>
- freedom of speech <br>
- freedom of assembly <br>
- freedom to petition the government <br>
- freedom of religion <br>
- the right to bear
</p>
</div>
<button class="accordion">52. What do we show loyalty to when we say the Pledge of Allegiance?</button>
<div class="panel">
<p>
- give up loyalty to other countries <br>
- defend the Constitution and laws of the United States <br>
- obey the laws of the United States <br>
- serve in the U.S. military (if needed) <br>
- be loyal to the United States <br>
</p>
</div>
<button class="accordion">54. How old do citizens have to be to vote for President? </button>
<div class="panel">
<p>
18 years and older
</p>
</div>
<button class="accordion"> 55. What are two ways that Americans can participate in their democracy? </button>
<div class="panel">
<p>
- vote <br>
- join a political party <br>
- help with a campaign <br>
- join a civic group <br>
- join a community group <br>
- give an elected official your opinion on an issue <br>
- call senators and representatives <br>
- publicly support or oppose an issue or policy <br>
- run for office <br>
- write to a newspaper <br>
</p>
</div>
<button class="accordion">56. When is the last day you can send in federal income tax forms? </button>
<div class="panel">
<p>
april 15
</p>
</div>
<button class="accordion">57. When must all men register for the Selective Service? </button>
<div class="panel">
<p>
- at age 18 <br>
- between ages 18 and 26 <br>
</p>
</div>
<button class="accordion">58. What is one reason colonists came to America? </button>
<div class="panel">
<p>
- freedom <br>
- political liberty <br>
- religious freedom <br>
- economic opportunity <br>
- practice their religion <br>
- escape persecution <br>
</p>
</div>
<button class="accordion">59. Who lived in America before the Europeans arrived? </button>
<div class="panel">
<p>
- american indians<br>
- native americans <br>
</p>
</div>
<button class="accordion">60. What group of people was taken to America and sold as slaves? </button>
<div class="panel">
<p>
- africans <br>
- people from africa<br>
</p>
</div>
<button class="accordion">61. Why did the colonists fight the British? </button>
<div class="panel">
<p>
- because of high taxes (taxation without representation)<br>
- beacuse the britis army stayed in their houses (boarding, quartering)<br>
- because they didn't have self-government <br>
</p>
</div>
<button class="accordion">62. Who wrote the Declaration of Independence? </button>
<div class="panel">
<p>
Thomas Jefferson
</p>
</div>
<button class="accordion">63. When was the Declaration of Independence adopted? </button>
<div class="panel">
<p>
July 4, 1776
</p>
</div>
<button class="accordion">64. There were 13 original states. Name three. </button>
<div class="panel">
<p>
- New Hampshire <br>
- Massachusetts <br>
- Rhode Island <br>
- Connecticut <br>
- New York <br>
- New Jersey <br>
- Pennsylvania <br>
- Delaware <br>
- Maryland <br>
- Virginia <br>
- North Carolina <br>
- South Carolina <br>
- Georgia <br>
</p>
</div>
<button class="accordion">65. What happened at the Constitutional Convention? </button>
<div class="panel">
<p>
- the Consitution was written<br>
- the Founding Fathers wrote the Constitution <br>
</p>
</div>
<button class="accordion">66. When was the Constitution written?</button>
<div class="panel">
<p>
1787
</p>
</div>
<button class="accordion">67. The Federalist Papers supported the passage of the U.S. Constitution. Name one of the writers</button>
<div class="panel">
<p>
- James Madison <br>
- Alexander Hamilton <br>
- John Jay <br>
- Publius <br>
</p>
</div>
<button class="accordion">68. What is one thing Benjamin Franklin is famous for? </button>
<div class="panel">
<p>
- U.S. Diplomat <br>
- oldest member of the Constitutional Convention <br>
- first Postmaster General of the United States <br>
- writer of "poor Richard's Almanac" <br>
- started the first free libraries <br>
</p>
</div>
<button class="accordion">69. Who is the “Father of Our Country”? </button>
<div class="panel">
<p>
George Washington
</p>
</div>
<button class="accordion">70. Who was the first President? </button>
<div class="panel">
<p>
George Washinton
</p>
</div>
<button class="accordion">71. What territory did the United States buy from France in 1803? </button>
<div class="panel">
<p>
- the Louisiana Territory <br>
- Lousiana <br>
</p>
</div>
<button class="accordion">72. Name one war fought by the United States in the 1800s. </button>
<div class="panel">
<p>
- War of 1812 <br>
- Mexican-American War<br>
- Civil War <br>
- Spanish-American War <br>
</p>
</div>
<button class="accordion">73. Name the U.S. war between the North and the South. </button>
<div class="panel">
<p>
- the Civil War <br>
- the War between the States <br>
</p>
</div>
<button class="accordion">74. Name one problem that led to the Civil War. </button>
<div class="panel">
<p>
- freed the slaves <br>
- saved (or preserved) the Union <br>
- led the United States during the Civil War <br>
</p>
</div>
<button class="accordion">76. What did the Emancipation Proclamation do? </button>
<div class="panel">
<p>
- freed the slaves <br>
- freed slaves in the confederacy <br>
- freed slaves in the confederate states <br>
- freed slaves in most southern states <br>
</p>
</div>
<button class="accordion">77. What did Susan B. Anthony do? </button>
<div class="panel">
<p>
- fought for women's rights<br>
- fought for civil rights <br>
</p>
</div>
<button class="accordion">78. Name one war fought by the United States in the 1900s. </button>
<div class="panel">
<p>
- World War 1 <br>
- World War 2 <br>
- Korean <br>
- Vietnam War <br>
- Gulf War <br>
</p>
</div>
<button class="accordion">79. Who was President during World War I? </button>
<div class="panel">
<p>
Woodrow Wilson
</p>
</div>
<button class="accordion">80. Who was President during the Great Depression and World War II? </button>
<div class="panel">
<p>
Franklin Roosevelt
</p>
</div>
<button class="accordion">81. Who did the United States fight in World War II? </button>
<div class="panel">
<p>
Japan, Germany, and Italy
</p>
</div>
<button class="accordion">82. Before he was President, Eisenhower was a general. What war was he in? </button>
<div class="panel">
<p>
World War 2
</p>
</div>
<button class="accordion">83. During the Cold War, what was the main concern of the United States? </button>
<div class="panel">
<p>
communism
</p>
</div>
<button class="accordion">84. What movement tried to end racial discrimination </button>
<div class="panel">
<p>
civil rights (movement)
</p>
</div>
<button class="accordion">85. What did Martin Luther King, Jr. do? </button>
<div class="panel">
<p>
- fought for civil rights <br>
- worked for equality for all Americans <br>
</p>
</div>
<button class="accordion">86. What major event happened on September 11, 2001, in the United States? </button>
<div class="panel">
<p>
terrorists attacked the United States
</p>
</div>
<button class="accordion">87. Name one American Indian tribe in the United States. </button>
<div class="panel">
<p>
- Cherokee <br>
- Navajo <br>
- Sioux <br>
- Chippewa <br>
- Choctaw <br>
- Pueblo <br>
- Apache <br>
- Iroquois <br>
- Creek <br>
- Blackfeet <br>
- Seminole <br>
- Cheyenne <br>
- Arawak <br>
- Shawnee <br>
- Mohegon <br>
- Huron <br>
- Oneida <br>
- Lakota <br>
- Crow <br>
- Teton <br>
- Hopi <br>
- Inuit <br>
</p>
</div>
<button class="accordion">88. Name one of the two longest rivers in the United States. </button>
<div class="panel">
<p>
- missouri river <br>
- mississippi <br>
</p>
</div>
<button class="accordion">89. What ocean is on the West Coast of the United States? </button>
<div class="panel">
<p>
pacific ocean
</p>
</div>
<button class="accordion">90. What ocean is on the East Coast of the United States? </button>
<div class="panel">
<p>
atlantic ocean
</p>
</div>
<button class="accordion">91. Name one U.S. territory. </button>
<div class="panel">
<p>
- Puerto Rico <br>
- U.S. Virgin Islands <br>
- American Samoa <br>
- Northern Mariana Islands <br>
- Guam <br>
</p>
</div>
<button class="accordion">92. Name one state that borders Canada. </button>
<div class="panel">
<p>
- Maine <br>
- New Hampshire <br>
- Vermont <br>
- New York <br>
- Pennsylvania <br>
- Ohio <br>
- Michigan <br>
- North Dakota <br>
- Montana <br>
- Idaho <br>
- Washington <br>
</p>
</div>
<button class="accordion">93. Name one state that borders Mexico.</button>
<div class="panel">
<p>
- California <br>
- Arizona <br>
- New Mexico <br>
- Texas <br>
</p>
</div>
<button class="accordion">94. What is the capital of the United States? </button>
<div class="panel">
<p>
Washington, D.C.
</p>
</div>
<button class="accordion">95. Where is the Statue of Liberty? </button>
<div class="panel">
<p>
- New York (Harbor)<br>
- Liberty Island <br>
</p>
</div>
<button class="accordion">96. Why does the flag have 13 stripes? </button>
<div class="panel">
<p>
- because there were 13 original colonies <br>
- because the stripes represent the original colonies <br>
</p>
</div>
<button class="accordion">97. Why does the flag have 50 stars? </button>
<div class="panel">
<p>
- because there is one star for each state <br>
- because each star represents a state <br>
- because there are 50 states <br>
</p>
</div>
<button class="accordion">98. What is the name of the national anthem? </button>
<div class="panel">
<p>
the Star Spangled Banner
</p>
</div>
<button class="accordion">99. When do we celebrate Independence Day? </button>
<div class="panel">
<p>
July 4
</p>
</div>
<button class="accordion">100. Name two national U.S. holidays. </button>
<div class="panel">
<p>
- New Year's Day <br>
- Martin Luther King Jr. Day <br>
- President's Day <br>
- Memorial Day <br>
- Independence Day <br>
- Labor Day <br>
- Columbus Day <br>
- Veterans Day <br>
- Thanksgiving<br>
- Christmas <br>
</p>
</div>
<p>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>