-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
54 lines (52 loc) · 1.72 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="css/layout.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<link href="https://fonts.googleapis.com/css?family=Audiowide|Lora|Roboto" rel="stylesheet">
</head>
<body>
<header>
<nav>
<ul class="navbar">
<li><a href="index.html" class="active">Home</a></li>
<li><a href="iss.html">ISS Page</a></li>
<li><a href="wiki.html">Wiki Page</a></li>
</ul>
</nav>
</header>
<content>
<div><p><span id="welcome-to-iss">Welcome to our International Space Station (ISS) tracker.</span></p></div>
<div class="main-logo">
<img src="img/logo.svg" alt="ISS-T Logo">
</div>
<div class="logo-text">
<h1>ISS Tracker</h1>
</div>
<p id="instructions">Please enter your name, and a location. The next time the ISS passes close to that location will be displayed on the next page.</p>
<div id="welcomeMessage"></div>
<div class="main-form">
<form>
Name:
<br>
<input type="text" id="name">
<br> Location:
<br>
<input type="text" id="address">
<br>
<br>
<a href="iss.html"><input type="button" value="Submit" id="formButton"></a>
</form>
</div>
</content>
<br>
<br>
<br>
<br>
<footer>
<p>© 2016 - Uber Space Cadets</p>
</footer>
</body>
<script type="text/javascript" src="js/app.js"></script>
<script type="text/javascript" src="js/htmlLocation.js"></script>
</html>