-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
99 lines (93 loc) · 3.19 KB
/
Copy pathindex.html
File metadata and controls
99 lines (93 loc) · 3.19 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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>UFO Finder</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/3.3.7/css/bootstrap.min.css" />
<link rel="stylesheet" href="style.css">
</head>
<body>
<div class="container">
<div id="loader"></div>
<div class="jumbotron" style="padding-top: 2%; padding-bottom: 2%; background-color: black">
<h1 style="color: white; font-weight: bold; text-align: center;">Wake Up, Sheeple!</h1>
<h2 style="color: white; font-weight: bold; text-align: center;">UFO Sightings Across North America</h2>
</div>
<div class="row">
<div class="col-md-2">
<div class="form-group">
<input type="date" class="form-control" id="date" placeholder="M/D/YYYY">
<a id="search" class="btn btn-default">Search</a>
</div>
</div>
<div class="col-md-2">
<div class="form-group">
<input type="text" class="form-control" id="city" placeholder="City">
<a id="search1" class="btn btn-default">Search</a>
</div>
</div>
<div class="col-md-2">
<div class="form-group">
<input type="text" class="form-control" id="state" placeholder="State">
<a id="search2" class="btn btn-default">Search</a>
</div>
</div>
<div class="col-md-2">
<div class="form-group">
<input type="text" class="form-control" id="country" placeholder="Country">
<a id="search3" class="btn btn-default">Search</a>
</div>
</div>
<div class="col-md-2">
<div class="form-group">
<input type="text" class="form-control" id="shape" placeholder="Shape">
<a id="search4" class="btn btn-default">Search</a>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table table-striped">
<thead>
<tr>
<th>Date</th>
<th>City</th>
<th>State</th>
<th>Country</th>
<th>Shape</th>
<th>Duration</th>
<th>Comments</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
<nav aria-label="Page navigation">
<ul class="pagination">
<li>
<a href="#" aria-label="Previous">
<span aria-hidden="true">«</span>
</a>
</li>
<li><a href="#">1</a></li>
<li><a href="#">2</a></li>
<li><a href="#">3</a></li>
<li><a href="#">4</a></li>
<li><a href="#">5</a></li>
<li>
<a href="#" aria-label="Next">
<span aria-hidden="true">»</span>
</a>
</li>
</ul>
</nav>
</div>
</div>
</div>
<script src="data.js" type="text/javascript"></script>
<script src="index.js" type="text/javascript"></script>
<button onclick="topFunction()" id="myBtn" title="Go to top">Top</button>
</body>
</html>