-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
45 lines (41 loc) · 1.08 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
<html>
<head>
<title>Bros</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script type="text/javascript" src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="js/bro.js"></script>
<script type="text/javascript" src="js/client.js"></script>
<style type="text/css">
body {
background-color: #000;
margin: 0px;
padding: 0px;
text-align: center;
font: 70%/1.5 Verdana, Tahoma, Arial, Helvetica, sans-serif;
color: #ddd;
}
canvas {
outline: 0;
border: 0px;
margin-left: auto;
margin-right: auto;
}
a {
color: #55DD55;
text-decoration: none;
}
a:hover {
color: #11AA11;
}
a img {
border: none;
}
</style>
</head>
<body onload="play()">
<canvas id="c" width="760" height="400" ></canvas>
<p><b>Controls:</b> Use mouse to move your Bro.</p>
<div>Coding: <b>Opi Danihelka</b> & <b>Martin Brázdil</b></div>
<p><br/><b>Opi-games</b> 2013<br/>for more games visit: <a href="http://jan.danihelka.net">jan.danihelka.net</a></p>
</body>
</html>