-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
66 lines (63 loc) · 2.79 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<title>Find the Way!</title>
<!--<link rel="stylesheet" href="index.css" type="text/css"/>-->
<link rel="stylesheet" href="landingpage.css" type="text/css"/>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
</head>
<body>
<!-- Nav bar, as on other pages -->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="navbar-header">
<button type="button" class="navbar-toggle collapsed" data-toggle="collapse" data-target="#bs-example-navbar-collapse-1" aria-expanded="false">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Find the Way!</a>
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse" id="bs-example-navbar-collapse-1">
<ul class="nav navbar-nav">
<li><a href="game.html">Game</a></li>
<li><a href="stats.html">Leaderboard</a></li>
</ul>
</div><!-- /.navbar-collapse -->
</div><!-- /.container-fluid -->
</nav>
<div id="masthead" class="jumbotron text-center">
<h1>Find The Way</h1>
<p>By Caleb, Chris, Gerson, and Ashton</p>
<div class="text-center">
<button id="play" type="button" class="btn btn-success btn-lg" onclick="location.href = 'game.html'">Play Now!</button>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4">
<h3 class="center-heading">Draw the Path!</h3>
<img src="drawingthepath.gif" class="img-thumbnail" title="Screenshot"></img>
<p>Draw the path from point to point and test your map reading and logic skills! Choose between easy, hard and local modes!</p>
</div>
<div class="col-sm-4">
<h3 class="center-heading">Test the Path!</h3>
<img src="testyourself.png" class="img-thumbnail" title="Screenshot"></img>
<p>Once you drawn your path and gotten your score, put it up against others and see where you stand!</p>
</div>
<div class="col-sm-4">
<h3 class="center-heading">Fun for the Whole Family!</h3>
<img src="family.jpg" class="img-thumbnail" title="Screenshot"></img>
<p>Fun for people of all ages! Compete against your friends and family members for the best scores!</p>
</div>
</div>
</div>
</body>
</html>