forked from lingonsaft/hacktoberfest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChooseYourNumber.html
22 lines (22 loc) · 924 Bytes
/
ChooseYourNumber.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!--Fidel Lim 5847485 -->
<!--Assignment 3 -Part 2 CSIT128 -->
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title></title>
<link rel="stylesheet" type="text/css" href="css/ChooseYourNumber.css">
<script src="scripts/ChooseYourNumber.js"></script>
</head>
<body id="secondPart">
<div id="wrapper2">
<button id="start" onclick="start()" class="breezy">Start Game</button><button id="stop" onclick="stop()"class="night">Stop Game</button><br>
<span id="chooseNumber"></span><span id="chosen"></span></br>
<span id="scoreSoFar"></span><span id="score"></span><br>
<button id="number1" onclick=" shuffleNumbers()"></button>
<button id="number2" onclick=" shuffleNumbers()"></button>
<button id="number3" onclick=" shuffleNumbers()"></button>
<button id="number4" onclick=" shuffleNumbers()"></button>
</div>
</body>
</html>