-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (27 loc) · 913 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"/>
<meta name="description" content="A simple HTML5 match-3 game"/>
<meta name="viewport" content="width=device-width"/>
<title>Blak & Bloo</title>
<link rel="stylesheet" href="main.css" type="text/css" charset="utf-8"/>
<style>
canvas { -webkit-tap-highlight-color: transparent; }
</style>
</head>
<body>
<div class="main">
<div id="game">
<canvas id="mainCanvas" width='320' height='480'>
<p>OOPS!</p>
<p>Looks like your browser can't speak "canvas".</p>
<p>This game requires a fairly modern browser; please update and try again.</p>
<p>Sorry about that.</p>
</canvas>
</div>
</div>
<script src="../../require.js" data-main="js/startup"></script>
</body>
</html>