forked from simonsablowski/beatemup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (42 loc) · 1.69 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Beat 'em up!</title>
<meta charset="utf-8">
<meta name="description" content="A simple Mortal Kombat tribute based on HTML5 and JavaScript by Simon Sablowski">
<meta name="keywords" content="simon sablowski, berlin, web development, mortal kombat, javascript, html5, tribute">
<link href="http://projects.simsab.net/beatemup/" rel="canonical">
<link href="screen.css" rel="stylesheet" type="text/css">
<script src="js/beatemup.min.js" type="text/javascript"></script>
</head>
<body>
<header id="header">
<h1 id="title">
Beat 'em up!
</h1>
<h2 id="help">
Press the arrow keys to move, the space bar to punch and enter to kick.
</h2>
</header>
<div id="body"></div>
<footer id="footer">
<p id="disclaimer">
This project by
<a href="http://www.simsab.net" title="Simon Sablowski">Simon Sablowski</a>
is an HTML5 and JavaScript-based tribute to
<a href="http://en.wikipedia.org/wiki/Mortal_Kombat" title="Mortal Kombat">Mortal Kombat</a>,<br/>
a classic beat 'em up game developed by
<a href="http://www.netherrealm.com" title="NetherRealm Studios">NetherRealm Studios</a>,
formerly Midway Games Chicago.<br/>
All graphics, characters and related elements are taken from the original game, trademarks and<br/>
property of <em>Warner Bros. Entertainment Inc. WB SHIELD ™ & Warner Bros. Entertainment Inc.(s10)</em>.
</p>
<p id="screenshot">
<img src="screenshot.jpg" alt="Screenshot"/>
</p>
<p id="copyright">
© 2013 <a href="http://www.simsab.net" title="Simon Sablowski">Simon Sablowski</a>
</p>
</footer>
</body>
</html>