-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.67 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1" charset="utf-8">
<title>SpaceShips</title>
<!-- Bootstrap core CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<!-- Custom fonts for this template -->
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css" integrity="sha384-50oBUHEmvpQ+1lW4y57PTFmhCaXp0ML5d60M1M7uH2+nqUivzIebhndOJK28anvf" crossorigin="anonymous">
<!-- Custom CSS -->
<link href="css/style.css" rel="stylesheet">
<script type="text/javascript" src="./js/launchGameScreen.js"></script>
</head>
<body>
<!-- Main Page -->
<header class="masthead d-flex">
<div class="container text-center my-auto">
<h1 class="mb-1 title">Welcome onboard SpaceShips!</h1>
<h3 class="mb-5 subtitle">A classic arcade space game</h3>
<button class="btn btn-dark btn-xl" onclick="window.opengame(false)" >Launch SpaceShip</button>
<br/><br/><br/>
<a class="btn" href="https://github.com/tjtanjin/spaceships_web" target="_blank" rel="noopener noreferrer">
<i class="fab fa-github fa-3x icon"></i>
</a>
</div>
<div id="space">
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
<div class="stars"></div>
</div>
<div class="overlay"></div>
</header>
</div>
</body>
</html>