-
Notifications
You must be signed in to change notification settings - Fork 4
/
star.html
26 lines (26 loc) · 956 Bytes
/
star.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
<!DOCTYPE html>
<html>
<head>
<title>Spaceploration</title>
<link rel="stylesheet" href="./css/normalize.css">
<link rel="stylesheet" href="./css/style.css">
<script type="text/javascript" src="./js/lib/jquery-1.11.1.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
<script type="text/javascript" src="./js/dust.js"></script>
<script type="text/javascript" src="./js/starTypes.js"></script>
</head>
<body>
<a href="./index.html"><button class="home">Go back to the Solar System</button></a>
<div class="header topMargin">
<h1>From Stardust</h1>
<h2>Hold down spacebar to make your star!</h2>
</div>
<div class="star"></div>
<!--<img src="images/brown-dwarf.png" alt="brown dwarf" /> -->
<div class="info hidden">
<p class="name"></p>
<p class="description"></p>
<button id="playAgain">Make a new star.</button>
</div>
</body>
</html>