-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
33 lines (31 loc) · 1.03 KB
/
index.html
File metadata and controls
33 lines (31 loc) · 1.03 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>First API Call</title>
<link rel="stylesheet" href="node_modules/bootstrap/dist/css/bootstrap.min.css">
<style media="screen">
body{
margin-top: 100px;
}
</style>
</head>
<body>
<div class="container">
<h1>Location Search</h1>
<form id="APIForm" method="post">
<div class="form-group">
<input id="searchForm" class="form-control" type="text" name="" value="">
</div>
<button type="submit" class="btn btn-primary">Submit</button>
</form>
<hr>
</div>
<div class="container">
<div id="dataContainer"></div>
<!-- <h2 id="header"></h2> -->
</div>
<script type="text/javascript" src="node_modules/jquery/dist/jquery.min.js"></script>
<script type="text/javascript" src="js/script.js"></script>
</body>
</html>