-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
58 lines (50 loc) · 900 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!DOCTYPE html>
<html>
<head>
<meta charset="utf8" />
<title>Shape Attack</title>
<style>
body {
width:100%;
height:100%;
background-color:black;
overflow:hidden;
}
#player {
border-radius:50%;
}
#score {
position:fixed;
top:2%;
left:2%;
color:white;
text-transform:uppercase;
font-weight:bold;
}
#gameover {
display:none;
position:absolute;
left:35%;
font-size:3em;
font-weight:bold;
color:white;
text-align:center;
text-transform:uppercase;
z-index:200;
}
</style>
</head>
<body>
<div id="gamediv">
<div id="player"></div>
</div>
<div id="score">
<p id="displayScore"><br/></p>
</div>
<div id="gameover">
<p class="gameover-text">game over</p>
<button id="reset">Play again</button>
</div>
<script src="script.js"></script>
</body>
</html>