-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
35 lines (32 loc) · 836 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fall Game</title>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<div id="game">
<img class="background-image" src="utils/brick-wall.png" alt="">
<div id="character">
</div>
</div>
<div class="left-control"></div>
<!-- <div class="right-control">
<input id="right" type="button" value="clickme" onclick="moveRight();" />
</div> -->
<div style="font-family: helvetica;
margin-left: 100px;
position: fixed;
bottom:10%;">
<p> Under construction <br>
check back later for improved <br>
UI and controllers for mobile view <br>
</p>
<div style="padding-top: 10px;">
<strong>Works on Desktop just fine tho : )</strong>
</div>
</div>
</body>
<script type="text/javascript" src="script.js"></script>
</html>