-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (65 loc) · 2.91 KB
/
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
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
<html lang="en">
<head>
<title>Scout</title>
<link rel="stylesheet" href="https://unpkg.com/leaflet@1.5.1/dist/leaflet.css"
integrity="sha512-xwE/Az9zrjBIphAcBb3F6JVqxf46+CDLwfLMHloNu6KEQCAWi6HcDUbeOfBIptF7tcCzusKFjFw2yuvEpDL9wQ=="
crossorigin="" />
<script src="https://unpkg.com/leaflet@1.5.1/dist/leaflet.js"
integrity="sha512-GffPMF3RvMeYyc1LWMHtK8EbPv0iNZ8/oTtHPx9/cc2ILxQ+u905qIwdpULaqDkyBKgOaB57QTMg7ztg8Jm2Og=="
crossorigin=""></script>
<link rel="stylesheet" href="styles/style.css">
<link href='https://fonts.googleapis.com/css?family=Karla' rel='stylesheet'>
</head>
<body>
<header>
<div class="sticky">
<div class="topnav">
<a class="active" href="#home">Scout</a>
<a href="#search">Search</a>
<a href="#articles">Articles</a>
</div>
</div>
</header>
<section>
<div class="headerImage">
<div id="map-title">
<a name="search"></a>
<h2>Search For Your Next Adventure</h2>
</div>
<div class="container search-sec">
<form name="contact-form" method="POST" action=# novalidate="novalidate" required minlength="2" maxlength="2">
<div class="row">
<div class="col-lg-12">
<div class="row">
<div class="col-md-3">
<input type="text" class="form-control search-slt" id="stateInput"
placeholder="Enter State Code, ie: DC">
</div>
<div class="col-md-3">
<select class="form-control search-slt" role="option" aria-selected="true"
id="type">
<option>Choose A Category to Visit!</option>
<option>Campgrounds</option>
<option>Parks</option>
<option>Places</option>
<option>Visitor Centers</option>
</select>
</div>
<div class="col-md-3">
<button type="submit" class="button">Scout!</button>
</div>
</div>
</div>
</div>
</form>
</div>
</div>
<div id="mapid"></div>
<h1 class="ArticleTitle">Adventure Near You</h1>
<div id="list"></div>
<h1 class="ArticleTitle">Articles</h1>
<div id="articles"><a name="articles"></a></div>
</section>
</body>
<script src="scripts/javascript.js"></script>
</html>