-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmars.html
56 lines (51 loc) · 1.55 KB
/
mars.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
<!doctype html>
<html>
<head>
<title>Space</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div class='page'>
<div class='section menu'>
<nav>
<ul>
<li>
<a href="index.html">Home</a>
</li>
<li>
<a href="neo.html">Asteroids</a>
</li>
<li>
<a href="spy.html">Satellite</a>
</li>
<li>
<a class="active" href="mars.html">Mars</a>
</li>
</ul>
</nav>
</div>
<div class='section sidebar'>
<h1>Fantastic Photos from the Curiosity Rover!</h1>
<br/>
<form>
<label>Enter a valid SOL!</label>
<br>
<input id="marsInput" type="text"></input><br/><br/>
<input id="marsSubmit" type="submit" value="Submit"></input>
</form>
<br>
<hr/>
<br>
<p>Warning: Some photos are quite small.</p>
</div>
<div class='section content'>
<div id="MarsResults"></div>
</div>
<div class='section footer'>
<a href="https://github.com/mgwillia/Creative2">Creative Lab 2 GitHub</a>
</div>
</div>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script text="type/javascript" src="script.js"></script>
</body>
</html>