-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfacts.html
118 lines (114 loc) · 4.2 KB
/
facts.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<!DOCTYPE html>
<html lang="en-us">
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The Universe</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js"
integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
crossorigin="anonymous"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
crossorigin="anonymous">
<link title="timeline-styles" rel="stylesheet"
href="https://cdn.knightlab.com/libs/timeline3/latest/css/timeline.css">
<!--BOOTSTRAP.JS TAG-->
<script src="https://cdn.knightlab.com/libs/timeline3/latest/js/timeline.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Ultra" rel="stylesheet">
<link href="https://fonts.googleapis.com/css?family=Teko" rel="stylesheet">
<link rel="stylesheet" type="text/css" media="screen" href="assets/css/main.css"/>
</head>
<body>
<script src="https://www.gstatic.com/firebasejs/4.12.0/firebase.js"></script>
<div class="container text-center">
<br>
<br>
<div class="jumbotron">
<h1 class="display-4">FACTS</h1>
<p class="lead"></p>
</div>
</div>
<br>
<br>
<div class="container text-center">
<div class="wrapper">
<!-- BUTTONS -->
<a href="index.html">
<button type="button" class="btn btn-primary btn-lg">Home</button>
</a>
<a href="facts.html">
<button type="button" class="btn btn-primary btn-lg">Facts</button>
</a>
<a href="planets.html">
<button type="button" class="btn btn-primary btn-lg">Planets</button>
</a>
<a href="constellations.html">
<button type="button" class="btn btn-primary btn-lg">Constellations</button>
</a>
<a href="APOD.html">
<button type="button" class="btn btn-primary btn-lg">APOD</button>
</a>
<br>
<br>
<div id='timeline-embed' style="width: 100%; height: 400px"></div>
<!-- SEARCH BAR CONTENT -->
<button id="Submit" class="btn btn-primary btn-lg" type="button">Load Facts</button>
<button id="lightPollution" class="btn btn-primary btn-lg" type="button">Light Pollution</button>
<br>
<br>
<div class="sidebar container col-lg-4">
<div id="weatherCity">
</div>
<div id="weatherState">
</div>
<div id="weatherTemparature">
</div>
<div id="weatherPrecipation">
</div>
<div id="weatherWind">
</div>
<div id="latitude">
</div>
<div id="longitude">
</div>
<div id="sunriseTime">
</div>
<div id="sunsetTime">
</div>
</div>
<div id="factsPlacement"></div>
<section id="main-content">
<p>
</p>
</section>
<br>
<div id="facts">
</div>
</div>
</div>
<div class="text-center lightPollution">To learn more about Light Pollution, click <a
href="http://www.darksky.org/light-pollution/" target="_blank">here</a></div>
<div class="content">
<!-- SEARCH BAR CONTENT -->
</div>
<br>
<br>
<!-- FOOTER -->
<div class="panel-footer">
<div class="container">
<div class="container text-center">
<footer>©Copyright 2018 STELLAR INC</footer>
</div>
</div>
</div>
<!--JAVASCRIPT & JQUERY SCRIPTS -->
<script type="text/javascript">
timeline = new TL.Timeline('timeline-embed', 'https://docs.google.com/spreadsheets/d/1bHLts9pioncEJkvfbVzD6S0q0TaR8TUpFkOGYKYv8Iw/edit#gid=0');
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script src="./sidebar/sidebar.js"></script>
<script src="assets/javascript/apod.js"></script>
</body>
</html>