-
Notifications
You must be signed in to change notification settings - Fork 28
/
mario.html
26 lines (26 loc) · 1.42 KB
/
mario.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Super Mario JS</title>
<link rel="stylesheet/less" type="text/css" href="mario.less">
<!-- <script src="http://raw.github.com/cloudhead/less.js/master/dist/less-1.3.3.min.js" type="text/javascript"></script> -->
<script src="less-1.3.0.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/jquery-2.0.0.min.js" type="text/javascript"></script>
<script src="underscore-min.js" type="text/javascript"></script>
<script src="backbone-min.js" type="text/javascript"></script>
<script src="mario.js" type="text/javascript"></script>
</head>
<body>
<h1>Super Mario JS</h1>
<div class="gamelevel">
<canvas id="mario" width="240" height="224"></canvas>
<canvas id="enemies" width="240" height="224"></canvas>
<canvas id="level" width="240" height="224"></canvas>
<canvas id="items" width="240" height="224"></canvas>
</div>
<p>Welcome to Super Mario JS. This work in progress is written using JQuery and the Canvas element. To play use the arrow keys.</p>
<p>Mario and all associated characters are copyrighted by Nintendo.</p>
<p><a href="https://github.com/bberlin/Super-Mario-JS" target="_blank">Fork Me on Github</a></p>
</body>
</html>