This repository was archived by the owner on Jul 11, 2019. It is now read-only.
forked from ThatAstronautGuy/SpacesimWebsite
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
84 lines (61 loc) · 2.71 KB
/
index.html
File metadata and controls
84 lines (61 loc) · 2.71 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
<!-- 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>
<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>
<div id="menu-container">
</div>
<header class="header">
</header>
<div class="carousel slide" data-ride="carousel" id="mainCarousel">
<ol class="carousel-indicators">
<li class="active" data-slide-to="0" data-target="#mainCarousel">
</li>
<li data-slide-to="1" data-target="#mainCarousel">
</li>
</ol>
<div class="carousel-inner">
<div class="item active">
<img alt="..." src="img/carousel/carousel1.png">
<div class="carousel-caption">
<h1>The Milky Way</h1>
<p>As seen by the ESOs VISTA telescope</p>
</div>
</div>
<div class="item">
<img alt="..." src="img/carousel/carousel2.png">
<div class="carousel-caption">
<h1>Stars hatching in the head of the Orion constellation</h1>
<p>As seen by NASAs Spitzer Telescope</p>
</div>
</div>
</div>
<a class="left carousel-control" data-slide="prev" href="#mainCarousel"><span class="glyphicon glyphicon-chevron-left"></span>
<span class="sr-only">Previous</span></a> <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 class="col-md-6 col-md-offset-3">
<div class="page-header">
<h1>OCESS</h1>
</div>
<h4 class="text-center">The OCESS 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." Explore our site to learn more about Spacesim. We hope you enjoy your
visit!</h4>
</div>
<footer class="footer">
</footer>
</body>
</html>