-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 977 Bytes
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>National Parks API Search</title>
<link href="style.css" rel="stylesheet" type="text/css" />
</head>
<body>
<main><h1>National Parks Search</h1>
<div class="searchContainer">
<form id="search">
<label for="searchBar">Enter state name or keyword:</label>
<input type="text" name="searchBar" id="searchBar" value="California" required>
<br><label for="hitsNum">Number of Responses Desired:</label>
<input type="number" name="hitsNum" id="hitsNum" value="10"><input type="submit" class="button">
</form>
</div>
<div class="results"></div>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script src="script.js"></script>
</main>
</body>
</html>