-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
70 lines (67 loc) · 1.59 KB
/
index.html
File metadata and controls
70 lines (67 loc) · 1.59 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
<!DOCTYPE HTML>
<html>
<head>
<title>BUTTON GAMING!!!</title>
<script src="jquery-1.9.1.js"></script>
<style>
#startgame
{
position:absolute;
right: 5%;
bottom:10%;
height:10%;
width:10%;
min-height:20px;
min-width:50px;
}
#scoreTable
{
position:absolute;
font-family:"Comic Sans MS";
top: 10%;
width:20%;
left:35%;
}
body
{
background-color:#5ac3b6;
}
button
{
position:absolute;
font-family:"Comic Sans MS";
font-weight:bold;
font-size:20px;
}
p
{
font-family:"Comic Sans Ms";
font-size:15px;
font-weight:bold;
display:inline;
}
</style>
</head>
<body>
<p id="timeClock">
Remaining: 30
</p>
<p id="test">
High Score: 0
</p>
<p id="score">
Score: 0
</p>
<div id="gamearea"></div>
<button id="startgame">
START GAME!!!
</button>
<table border="1" id="scoreTable">
<tr>
<th>Name</th>
<th>Score</th>
</tr>
</table>
<script src="ButtonGame.js"></script>
</body>
</html>