This repository was archived by the owner on Jan 21, 2018. It is now read-only.
forked from IvanFon/SpacesimWebsite
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
117 lines (93 loc) · 3.84 KB
/
index.html
File metadata and controls
117 lines (93 loc) · 3.84 KB
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
<!-- I removed clearfix from a couple places, commented at each point. If the CSS goes to hell, check if readding clearfix solves everything -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>OCE SpaceSim</title>
<meta charset="UTF-8">
<meta content="width=device-width, initial-scale=1" name="viewport">
<meta content=
"OCESS is a non-profit organization dedicated to informing and involving students from across Ontario about space and science." name=
"description">
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/stylesheet.css" rel="stylesheet">
<link href="css/footer.css" rel="stylesheet">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/main.js"></script>
</head>
<body>
<!-- Header -->
<header class="header">
</header>
<!-- Image carousel -->
<div class="carousel slide" data-ride="carousel" id="mainCarousel">
<!-- Carousel indicators -->
<ol class="carousel-indicators">
<!-- First image -->
<li class="active" data-slide-to="0" data-target="#mainCarousel"></li>
<!-- Second image-->
<li data-slide-to="1" data-target="#mainCarousel"></li>
<!-- Third image -->
<li data-slide-to="2" data-target="#mainCarousel"></li>
</ol>
<!-- Carousel items -->
<div class="carousel-inner">
<!-- First image -->
<div class="item active">
<!-- Image -->
<img alt="..." class="img-responsive" src="img/carousel/carousel1.png">
<!-- Caption -->
<div class="carousel-caption">
<p>The Milky Way, as seen by the ESO's VISTA telescope</p>
</div>
</div>
<!-- Second image -->
<div class="item">
<!-- Image -->
<img alt="..." class="img-responsive" src="img/carousel/carousel2.png">
<!-- Caption -->
<div class="carousel-caption">
<p>Stars hatching in the head of the Orion constellation, as seen by NASA's Spitzer telescope</p>
</div>
</div>
<!-- Third image -->
<div class="item">
<!-- Image -->
<img alt="..." class="img-responsive" src="img/carousel/carousel3.jpg">
<!-- Caption -->
<div class="carousel-caption">
<p>A self-portrait taken by NASA's Curiosity rover</p>
</div>
</div>
</div>
<!-- Carousel controls -->
<div id="carousel-controls">
<!-- Left button -->
<a class="left carousel-control" data-slide="prev" href="#mainCarousel">
<span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span>
</a>
<!-- Right button -->
<a class="right carousel-control" data-slide="next" href="#mainCarousel">
<span class="glyphicon glyphicon-chevron-right"></span>
<span class="sr-only">Next</span>
</a>
</div>
</div>
<!-- Description -->
<div class="col-md-6 col-md-offset-3">
<!-- Header -->
<div class="page-header">
<h1>What is OCESS?</h1>
</div>
<!-- Description -->
<h4 class="text-center">
The Ottawa Carleton Educational Space Simulation is a non-profit organization that is dedicated to teaching people about space, as well as
fostering a love and respect of the "final frontier".
</h4>
</div>
<!-- Footer -->
<footer class="footer">
</footer>
</body>
</html>