-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathindex.html
49 lines (41 loc) · 1.6 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
47
48
49
<html>
<head>
<!--BOOTSTRAP-->
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"/>
<!-- jQuery library -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<!-- Latest compiled JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<!--END BOOTSTRAP-->
<!--Custom CSS-->
<link href="main.css" rel="stylesheet" type="text/css"/>
<!--End Custom CSS-->
</head>
<body>
<div class="mainScreen">
<div class="hero-text">
<h1><strong>Influx</strong></h1>
<p style="font-size:15px">Are you the genius who will save Planet Earth?</p>
</div>
<div class="row" style="padding-top:350px;">
<div class="col-md-4 text-center">
<a href="rules.html">
<button type="button" class="btn-lg btn-primary">Rules <span class="fa fa-clone"></span></button>
</a>
</div>
<div class="col-md-4 text-center">
<a href="level1.html">
<button type="button" class="btn-lg btn-success">Play Game <span class="glyphicon glyphicon-play"></span></button>
</a>
</div>
<div class="col-md-4 text-center">
<a href="mute.html">
<button type="button" class="btn-lg btn-warning">Mute <span class="fa fa-volume-off"></span></button>
</a>
</div>
</div>
</div>
</body>
</html>