-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathjquery_faq.html
More file actions
140 lines (107 loc) · 6.41 KB
/
jquery_faq.html
File metadata and controls
140 lines (107 loc) · 6.41 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- Bootstrap CSS -->
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
<!-- JQuery CDN 2.24 -->
<script src="https://code.jquery.com/jquery-2.2.4.js"
integrity="sha256-iT6Q9iMJYuQiMWNd9lDyBUStIq/8PuOW33aOqmvFpqI=" crossorigin="anonymous"></script>
<!-- personal custom CSS-->
<link rel="stylesheet" href="css/jquery_faq.css">
<title>Hello, Fierem!</title>
</head>
<body>
<div class="container">
<div class="row">
<div class="container" id="traverse-container">
<div class="row justify-content-center">
<div class="col-10 row" >
<h3 class="text-center mb-3">jQuery Traverse</h3>
<div class="col-4">
<img id="imageLeft" src="img/comic1.jpeg" class="img-fluid" alt="...">
<div class="d-grid mt-3">
<button id="imageBtnLeft" type="button" class="btn btn-dark">Swap</button>
</div>
</div>
<div class="col-4">
<img id="imageMid" src="img/comic2.jpeg" class="img-fluid" alt="...">
<div class="d-grid mt-3">
<button id="imageBtnMid" type="button" class="btn btn-dark">Swap</button>
</div>
</div>
<div class="col-4">
<img id="imageRight" src="img/comic3.jpeg" class="img-fluid" alt="...">
<div class="d-grid mt-3">
<button id="imageBtnRight" type="button" class="btn btn-dark">Swap</button>
</div>
</div>
</div>
<!-- end main row-->
</div>
<!-- end traverse container-->
</div>
<h4 class="text-center">FAQ about National Parks</h4>
<div class="btn-group justify-content-center" role="group" aria-label="Basic example">
<button id="showBtn">Show definition</button>
</div>
<dl>
<dt>What is a National Park?</dt>
<dd class="invisible">an area set aside by a national government for the preservation of the natural environment</dd>
<dt>What government agency oversees the National Park Service?</dt>
<dd class="invisible">The National Park Service is a bureau of the Department of the Interior. Directly overseeing its operation is the department's Assistant Secretary for Fish, Wildlife and Parks.</dd>
<dt>How many employees are in the National Park Service?</dt>
<dd class="invisible">Permanent, temporary, and seasonal employees: Approximately 20,000
Volunteers: More than 279,000 in 2019</dd>
<dt></dt>
<dd class="invisible"></dd>
<dt></dt>
<dd class="invisible"></dd>
<dt>How old is the National Park System?</dt>
<dd class="invisible">The National Park Service was created by an act signed by President Woodrow Wilson on August 25, 1916. Yellowstone National Park was established by an act signed by President Ulysses S. Grant on March 1, 1872, as the nation's first national park. View the National Park System timeline.</dd>
<dt>What is the origin of the National Park Service arrowhead?</dt>
<dd class="invisible">The arrowhead was authorized as the official National Park Service emblem by the Secretary of the Interior on July 20, 1951. The components of the arrowhead may have been inspired by key attributes of the National Park System, with the sequoia tree and bison representing vegetation and wildlife, the mountains and water representing scenic and recreational values, and the arrowhead itself representing historical and archeological values. Read more about the history of the arrowhead and other elements of NPS visual design.</dd>
<dt>How many areas are in the National Park System?</dt>
<dd class="invisible">The system includes 423 areas covering more than 85 million acres in every state, the District of Columbia, American Samoa, Guam, Puerto Rico, and the Virgin Islands. These areas include national parks, monuments, battlefields, military parks, historical parks, historic sites, lakeshores, seashores, recreation areas, scenic rivers and trails, and the White House. Learn more about national park designations. See the complete list of National Park Service units and related areas by type and number.</dd>
<dt>What is the largest national park site? Smallest?</dt>
<dd class="invisible">Largest: Wrangell-St. Elias National Park and Preserve, AK, at 13.2 million acres
Smallest: Thaddeus Kosciuszko National Memorial, PA, at 0.02 acres</dd>
<dt>How many people visit the national parks?</dt>
<dd class="invisible">Total recreation visitors to the national parks in 2021: 297,115,406.</dd>
</dl>
<div id="yellowBtn" class="col-auto border bg-light border-warning">Yellowize LI</div>
<h3>National Parks of US</h3>
<ul id="national-parks" >
<li class="">Arches</li>
<li class="">Badlands</li>
<li>Carlsbad Caverns</li>
<li>Denali</li>
</ul>
<h3>State Parks of Texas</h3>
<ul id="state-parks-texas">
<li>Abilene</li>
<li>Big Bend</li>
<li>Choke Canyon</li>
<li>Davis Mountains</li>
</ul>
<h3>State Park of Marvel</h3>
<ul id="state-parks-marvel">
<li>Rogue</li>
<li>Gambit</li>
<li>Wolverine</li>
<li>Phoenix</li>
</ul>
<!-- end main row-->
</div>
<!-- END main container-->
</div>
<!-- Option 1: Bootstrap Bundle with Popper -->
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js"
integrity="sha384-MrcW6ZMFYlzcLA8Nl+NtUVF0sA7MsXsP1UyJoMp4YLEuNSfAP+JcXn/tWtIaxVXM"
crossorigin="anonymous"></script>
<!--Personal custom JS script-->
<script src="js/jquery_faq.js"></script>
</body>
</html>