-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
33 lines (33 loc) · 931 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
28
29
30
31
32
33
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
<script defer src="./app.js"></script>
<link rel="stylesheet" href="main.css">
<link href="https://fonts.googleapis.com/css2?family=Barlow:wght@300&family=Poller+One&family=Titillium+Web&display=swap" rel="stylesheet">
<title>Parks ALERT!</title>
</head>
<body>
<div id="landing-page">
<h1>Parks ALERT!</h1>
<h5>Search the NPS database for alerts regarding your favorite national parks.</h5>
<div>
<form id="state-form">
<input
type="text"
name="state"
placeholder="State abbreviation"
id="state-search"
/>
<button id="search">Search</button>
</form>
</div>
<div id="error"></div>
<div
id="state-alerts">
</div>
</div>
</body>
</html>