-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
50 lines (42 loc) · 1.71 KB
/
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
<html>
<head>
<title>Colour Guesser Game</title>
<link rel="stylesheet" href="design.css">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Poppins&family=Roboto+Condensed&display=swap" rel="stylesheet">
</head>
<body>
<h1>Colour Guesser Game</h1>
<div id="horizontalFlex" style="display: none">
<div id="gridSpace"></div>
<div id="markersSpace"></div>
</div>
<div class="floatingBox" id="turnFinishedDialogue" style="display: none">
<h1>Scores:</h1>
<ul id="playerScoresList">
</ul>
<button id="nextRoundButton">NEXT ROUND</button>
</div>
<div class="floatingBox" id="gameStartDialogue">
<h1>Welcome to the game!</h1>
<p>Instructions: sthearshtasrihoteiah</p>
<select id="numPlayersSelect">
<option value=2>2</option>
<option value=3>3</option>
<option value=4>4</option>
<option value=5>5</option>
</select>
<button id="playGameButton">PLAY GAME</button>
</div>
<div class="floatingBox" id="turnPrompt" style="display: none">
<p id="turnPromptText"></p>
</div>
<div class="floatingBox" id="randomSquare" style="display: none">
<h1 id="showHiddenPrompt"></h1>
<p id="correctSquare"></p>
<button id="startRoundButton">GOT IT</button>
</div>
</body>
<script src="colourGame.js" type="module"></script>
</html>