-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
47 lines (41 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>New Tab</title>
<!--Scripts-->
<script src="dependencies/angular.js"></script>
<script src="dependencies/d3js.min.js" charset="utf-8"></script>
<script src="dependencies/topojson.min.js"></script>
<!--CSS Files -->
<link href="https://fonts.googleapis.com/css?family=Roboto:300" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Raleway:300,400" rel="stylesheet">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css">
<link rel="stylesheet" href="styles/main.css">
</head>
<body>
<div ng-app = "spaceApp" ng-controller = "spaceController">
<img id="backgroundimage" ng-src = "{{imageURL}}"/>
<div id="wrapper">
<div id="time" class="container-fluid text-center align-middle">
<h1 id="time-text">12:00 AM</h1>
</div>
<div id="welcome" class="text-center">
<h2 id="welcome-text"></h2>
</div>
<div id="quote" class="text-center">
<h3 id="quote-text">"Where there's space, there's no life."</h3>
<h6 id="author">~Rahul Krishnan</h6>
</div>
</div>
</div>
<a href="https://iss-extension.github.io/iss-stream/" title="ISS Live Feed"><section id="turnglobe">
<div id="worldmap"></div>
</section></a>
<!--Bootstrap and JQuery Javascript -->
<script type='text/javascript' src="scripts/time.js"></script>
<script type='text/javascript' src="scripts/script.js"></script>
<script src="scripts/globe.js"></script>
<script src="dependencies/jquery.js"></script>
</body>
</html>