-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
50 lines (42 loc) · 1.17 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
<html>
<head>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<title>Where is the ISS?</title>
<link rel="stylesheet" href="./css/main.css">
<script src="./libraries/p5.min.js" type="text/javascript"></script>
<script src="./libraries/mappa.js" type="text/javascript"></script>
<script src="./sketch.js"> type = "text/javascript"</script>
</head>
<body>
<div id="grid">
<header>
<h2 id="title">Where is the ISS?</h2>
</header>
<div id="info">
<table style="width: 100%; border-spacing: 0px;">
<tr>
<th>Latitude</th>
<td><span id="lat"></span>°</td>
</tr>
<tr>
<th>Longitude</th>
<td><span id="long"></span>°</td>
</tr>
<tr>
<th>Altitude</th>
<td><span id="alt"></span> miles</td>
</tr>
<tr>
<th>Velocity</th>
<td><span id="vel"></span> mph</td>
</tr>
</table>
</div>
<div id="map"></div>
<footer>
<p style="margin: 3px">Hunter Wilkins | [email protected]</p>
</footer>
</div>
</body>
</html>