-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
48 lines (35 loc) · 1.19 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
<html>
<head>
<title>ISS Finder</title>
<link rel="stylesheet" href="https://unpkg.com/[email protected]/dist/leaflet.css"
integrity="sha512-xodZBNTC5n17Xt2atTPuE1HxjVMSvLVW9ocqUKLsCC5CXdbqCmblAshOMAS6/keqq/sMZMZ19scR4PsZChSR7A=="
crossorigin="" />
<script src="https://unpkg.com/[email protected]/dist/leaflet.js"
integrity="sha512-XQoYMqMTK8LvdxXYG3nZ448hOEQiglfqkJs1NOQV44cWnUrBc8PkAOcXy20w0vlaXaVUearIOBhiXZ5V3ynxwA=="
crossorigin=""></script>
<link rel="stylesheet" href="css/style.css">
</head>
<body>
<h1 id="main_head">Where Is ISS?</h1>
<hr>
<div id="data">
<div id="r1">
<span class="title"> Latitude:</span> <span id="lat" class="da"></span><br>
<span class="title"> Longitude:</span> <span id="long" class="da"></span><br>
</div>
<div id="r2">
<span class="title"> Altitude: </span> <span id="alt" class="da"></span> <br>
<span class="title"> Velocity: </span> <span id="vel" class="da"></span><br>
</div>
</div>
<div id="map">
<div id="ISSmap"></div>
</div>
<footer class="footer">
<div class="footer_contents">
Copyright © Raman Preet Singh 2020
</div>
</footer>
<script src="js/finder.js"></script>
</body>
</html>