-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathwiki.html
38 lines (35 loc) · 1.19 KB
/
wiki.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
<!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" />
<meta charset="utf-8" />
</head>
<body>
<header>
<nav>
<ul class="navbar">
<li><a href="index.html">Home</a></li>
<li><a href="iss.html">ISS Page</a></li>
<li><a href="wiki.html" class="active">Wiki Page</a></li>
</ul>
</nav>
</header>
<content class="astronaut-info">
<div class="logo-text">
<h1>ISS Current Crew</h1>
</div>
<div id="wrap"></div>
</content>
<aside>
<div id="twitter">
<a class="twitter-timeline" data-width="250" data-height="700" href="https://twitter.com/ISS_Update">Tweets by ISS_Update</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
</div>
</aside>
<footer>
<p>© 2016 - Uber Space Cadets</p>
</footer>
</body>
<script type="text/javascript" src="js/astronauts.js"></script>
</html>