-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
27 lines (19 loc) · 909 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
<!DOCTYPE html>
<html>
<head>
<title> Task 1</title>
<script src="main.js"></script>
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<button id='startgameButton' type="button" onclick="startgame()">Start Game!</button>
<button id="reset" type="button" onclick="reset()" style="display: none;">Reset</button>
<div id="currentPlayer"></div>
<table id="gameboard" class="shadow"></table>
<button id="rotate_left" type="button" onclick='rotateLeft()' style="display: none;" >Left</button>
<button id="rotate_right" type="button" onclick='rotateRight()' style="display: none;" >Right</button>
<p id="countdown">120 seconds</p>
<button id="pause" type="button" onclick="pauseTime()" style="display: none;" >Pause</button>
<button id="resume" type="button" onclick="resume()" style="display: none;">Resume</button>
</body>
</html>