-
Notifications
You must be signed in to change notification settings - Fork 2
/
deviframe.html
30 lines (29 loc) · 1.32 KB
/
deviframe.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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr">
<head>
<title></title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.js"></script>
<script type="text/javascript" src="javascript/gameQuery-master/jquery.gamequery.js"></script>
<script type="text/javascript" src="javascript/Settings.js"></script>
<script type="text/javascript" src="javascript/Models.js"></script>
<script type="text/javascript" src="javascript/Controllers.js"></script>
<script type="text/javascript" src="javascript/Game.js"></script>
<style type="text/css">
html,body{
margin: 0;
padding: 0;
background: black;
}
</style>
</head>
<body>
<div id="playground" style="width: 700px; height: 250px; background: black;">
<div id="welcomeScreen" style="width: 700px; height: 500px; position: absolute; z-index: 100; font-family: verdana, sans-serif;">
<div style="position: absolute; top: 100px; width: 700px; color: white;">
<div id="loadingBar" style="position: relative; left: 100px; height: 15px; width: 0px; background: red;"></div><br />
<center><a style="cursor: pointer;" id="startbutton">Click here to start!</a></center>
</div>
</div>
</div>
</body>
</html>