-
Notifications
You must be signed in to change notification settings - Fork 0
/
jquery_faq.html
120 lines (117 loc) · 5.4 KB
/
jquery_faq.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>10 FAQ About National Parks</title>
<link rel="stylesheet" href="css/jquery_faq.css">
<link rel="stylesheet" href="css/resets.css">
<link rel="stylesheet" href="css/layout.css">
</head>
<body>
<h1>FAQ about National Parks:</h1>
<dl>
<!-- Number 1-->
<dt class="highlight">Who is the director of the National Park Service?</dt>
<dd class="invisible">Charles F. "Chuck" Sams III is the Director of the National Park Service.
</dd>
<!-- Number 2-->
<dt class="highlight">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>
<!-- Number 3-->
<dt class="highlight">How many employees are in the National Park Service?</dt>
<dd class="invisible">
<ol>
<li>
Permanent, temporary, and seasonal employees: Approximately 20,000
</li>
<li>
Volunteers: More than 279,000 in 2019
</li>
</ol>
</dd>
<!-- Number 4-->
<dt class="highlight">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.
</dd>
<!-- Number 5-->
<dt class="highlight">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.
</dd>
<!-- Number 6-->
<dt class="highlight">How many areas are in the National Park System?</dt>
<dd class="invisible">The system includes 424 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.
</dd>
<!-- Number 7-->
<dt class="highlight">What is the largest national park site? Smallest?</dt>
<dd class="invisible">
<ol>
<li>Largest: Wrangell-St. Elias National Park and Preserve, AK, at 13.2 million acres</li>
<li>Smallest: Thaddeus Kosciuszko National Memorial, PA, at 0.02 acres</li>
</ol>
</dd>
<!-- Number 8-->
<dt class="highlight">How many people visit the national parks?</dt>
<dd class="invisible">In 2022, the total number of recreation visits to the national parks was 311,985,998.
</dd>
<!-- Number 9-->
<dt class="highlight">What is the National Park Service budget?</dt>
<dd class="invisible">
<ol>
<li>Fiscal Year (FY) 2014 Enacted: $2.98 billion</li>
<li>FY 2015 Enacted: $2.615 billion</li>
<li>FY 2016 Enacted:$2.851 billion</li>
<li>FY 2017 Enacted: $2.932 billion</li>
</ol>
</dd>
<!-- Number 10-->
<dt class="highlight">How do I obtain a park entrance pass?</dt>
<dd class="invisible">Fewer than one-third of the national parks charge entrance fees. You can obtain park entrance
passes by visiting a park site that charges an entrance fee. Entrance fee sites have passes available; we
recommend calling a park prior to your visit. There are a number of entrance passes available, including
park-specific passes as well as passes that offer entrance to more than 2,000 federal recreation sites in
addition to the national parks (Annual, Military, Senior, 4th Grade, Access, and Volunteer passes)
</dd>
</dl>
<h3 id="national-parks-heading">National Parks</h3>
<ul class="fun-facts">
<li>Arches</li>
<li>Badlands</li>
<li>Carlsbad Caverns</li>
<li>Denali</li>
</ul>
<h3>State Parks of Texas</h3>
<ul class="fun-facts">
<li>Abilene</li>
<li>Big Bend</li>
<li>Choke Canyon</li>
<li>Davis Mountains</li>
</ul>
<h3>State Parks of Texas</h3>
<ul class="fun-facts">
<li class="highlight2">Fun facts #1</li>
<li class="highlight2">Fun facts #2</li>
<li class="highlight2">Fun facts #3</li>
<li class="highlight2">Fun facts #4</li>
</ul>
<button class="hidey-btn">Begone</button>
<button class="remove">Remove Highlight</button>
<script src="https://code.jquery.com/jquery-3.7.0.min.js"
integrity="sha256-2Pmvv0kuTBOenSvLm6bvfBSSHrUJ+3A7x6P5Ebd07/g=" crossorigin="anonymous"></script>
<script src="js/jquery_faq.js"></script>
</body>
</html>