-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
59 lines (56 loc) · 2.4 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
<!doctype html>
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]-->
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]-->
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]-->
<!--[if gt IE 8]><!-->
<html>
<!--<![endif]-->
<head>
<meta charset="utf-8">
<meta content="IE=edge" http-equiv="X-UA-Compatible">
<title>Beast Land</title>
<meta content="" name="description">
<meta content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width" name="viewport">
<meta content="yes" name="mobile-web-app-capable">
<meta content="yes" name="apple-mobile-web-app-capable">
<link href="images/monster.png" rel="icon" sizes="192x192">
<link href="images/monster-128.png" rel="icon" sizes="128x128">
<link href="images/monster-128.png" rel="apple-touch-icon" sizes="128x128">
<link href="images/monster-128.png" rel="apple-touch-icon-precomposed" sizes="128x128">
<!-- build:css(.tmp) styles/main.css -->
<link href="styles/main.css" rel="stylesheet">
<!-- endbuild -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.2.0/css/font-awesome.min.css" integrity="sha256-UNvss+0AeuPIFODCIPnpoVPQL7r6PZRlxLIiBCl2qOw=" crossorigin="anonymous"/>
</head>
<body>
<!--[if lt IE 7]> <p class="browsehappy">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> to improve your experience. </p> <![endif]-->
<!-- Add your site or application content here -->
<div class="ui-container">
<div id="game-container" class="main-menu">
<ul class="menu-options">
<li><a href="survival.html">Survival Mode</a></li>
</ul>
<div class="help-container">
<div class="media">
<div class="media-body">
<h4 class="media-heading">Move Around</h4>
Use the <kbd>W</kbd><kbd>A</kbd><kbd>S</kbd><kbd>D</kbd> or <kbd>▲</kbd><kbd>◀</kbd><kbd>▼</kbd><kbd>▶</kbd> keys to move around the world and push blocks.
</div>
</div>
<div class="media">
<div class="media-body">
<h4 class="media-heading">Kill Beasts</h4>
Kill beasts by crushing them between blocks.
</div>
</div>
<div class="media">
<div class="media-body">
<h4 class="media-heading">Pull Blocks</h4>
Hold the <kbd>SHIFT</kbd> key to pull blocks.
</div>
</div>
</div>
</div>
</div>
</body>
</html>