-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
71 lines (50 loc) · 1.65 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
69
70
71
<!DOCTYPE html>
<html>
<head>
<title> Asteroid Exploration Adventure Tool </title>
<meta name="viewport" content="initial-scale=1.0">
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="style.css">
<link href="https://fonts.googleapis.com/css?family=Space+Mono" rel="stylesheet">
<script src="https://code.jquery.com/jquery-2.2.4.min.js" integrity="sha256-BbhdlvQf/xTY9gja0Dq3HiwQF8LaCRTXxZKRutelT44=" crossorigin="anonymous"></script>
<script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyDK5GLl7W0HXw17ssafL8jCGEf-gPZ52xM&callback=initMap"
sync defer></script>
<script src="searcher.js"></script>
<script>
</script>
</head>
<body>
<div id="map"></div>
<script>
var map;
function initMap() {
map = new google.maps.Map(document.getElementById('map'), {
});
}
</script>
<div class="data">
<h1> Nearest Meteorite Landing <h1>
<form autocomplete="off" id="form" onsubmit="return false;">
<input type="text" placeholder="Enter a Valid City or Town" class="inputBox" id="userInput" />
<input type="submit" class="submitButton" onclick="changeCity()" />
</form>
<p id="badcity"> </p>
<div class="container">
<div class="categories">
<h3> Coordinates </h3>
<h3> Name of Asteroid </h3>
<h3> Year Landed </h3>
<h3> Mass (g) </h3>
<h3> Rock Type </h3>
</div>
<div class="info">
<h3 id="coord"> </h3>
<h3 id="name"> </h3>
<h3 id="year"> </h3>
<h3 id="mass"> </h3>
<h3 id="rockType"></h3>
</div>
</div>
</div>
</body>
</html>