-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (67 loc) · 2.55 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
<!DOCTYPE html>
<html>
<head>
<title>Open Space</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="src/styles/index.css">
<link rel="stylesheet" type="text/css" href="src/styles/header.css">
<link rel="stylesheet" type="text/css" href="src/styles/rocket.css">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="hleft">
<a href="https://pyguru123.github.io/Open-Space/"> <img class="logo" src="assets/nasa_logo.png" width="99" height="80"> </a>
</div>
<div class="hright">
<span><a href="src/apod.html"> APOD </a></span>
<span><a href="src/iss.html"> ISS </a></span>
<span><a href="src/rovers.html"> MARS Rovers </a></span>
<span><a href="src/epic.html"> EPIC </a></span>
<span><a href="src/hubble.html"> Hubble </a></span>
<span><a href="src/opendata.html"> Open Data </a></span>
</div>
</div>
<div class="body">
<div class="rocketscene">
<div class="scene">
<i class="fa fa-rocket" aria-hidden="true"></i>
<span class="cloud cloud1">
<i class="fa fa-cloud" aria-hidden="true"></i>
</span>
<span class="cloud cloud2">
<i class="fa fa-cloud" aria-hidden="true"></i>
</span>
<span class="cloud cloud3">
<i class="fa fa-cloud" aria-hidden="true"></i>
</span>
</div>
</div>
<div class="infobox">
<h2>Open Space</h2>
<p>This website provides access to a number of open source space based API's.
If you are space enthusiast, this is the perfect website for you.</p>
<p>The API's include </p>
<ul>
<li>Astronomy picture of the day</li>
<li>ISS Tracker </li>
<li>Mars Rover Photographs</li>
<li>Near Earth Objects Web Service</li>
<li>Earth Polychromatic Imaging Cam</li>
<li>Hubble Space Telescope</li>
<li>Open Space Data Api</li>
</ul>
</div>
</div>
<div class="footer">
<div class="more">
This webtool can be used for studying and researching on astronomical bodies and tools. It uses a number of NASA supported APIs. You can track the International Space Station, The Hubble Telescope, Mars Rovers or Determine Earth's State using NASA polychromatic Imaging Camera. Happy Space Research !
</div>
<div class="about">
This website is open-source and is available at <a href="https://github.com/pyGuru123/Open-Space"> github </a> to edit.
</div>
</div>
<section></section>
</body>
</html>