-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.php
31 lines (31 loc) · 964 Bytes
/
index.php
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Erro Game</title>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/crafty.js" type="text/javascript"></script>
<script src="js/game.js" type="text/javascript"></script>
<style>
body, html {
margin:0;
padding: 0;
overflow:hidden;
font-family:Arial;
font-size:20px;
background: #011322;
text-align: center;
}
#cr-stage, #menu {
margin: 50px auto;
}
</style>
</head>
<body>
<div id="menu">
<a href="javascript:startGame()">
<img id="logo" src="img/errologo.jpg" alt="ERRO" title="ERRO GAME"/>
</a>
</div>
</body>
</html>