-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathboston.html
51 lines (46 loc) · 1.95 KB
/
boston.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Going to Boston</title>
<link rel="stylesheet" href="css/boston.css">
</head>
<body>
<p class="start_page">
How many rounds would you like to play? <br>
(Odd #s only!)<br><br>
<input type="number" id="round_num" class="textInput"><br><br>
<button class="start_submit">Start the Game</button>
<span class="not_odd hidden">Your input value must be valid</span>
</p>
<p class="roll_for_first hidden">
Roll the die by clicking the button below.<br>
The player with the higher number goes first.<br><br>
<span class="one_dice"> Player 1: N/A</span> <br>
<span class="two_dice"> Player 2: N/A</span> <br><br>
<span class="first_player"> The player to go first is... </span><br><br>
<button class="first_dice">Roll Dice</button>
<button class="play hidden">Play</button>
</p>
<p class="game_play hidden">
<span class="round">Round 1</span><br><br>
<span class="one_score">Player One Score: 0</span><br>
<span class="one_rounds">Player One Rounds Won: 0</span><br><br>
<span class="two_score">Player Two Score: 0</span><br>
<span class="two_rounds">Player Two Rounds Won: 0</span><br><br>
<span class="current_player">Current Player: N/A</span><br><br>
<span class="dice_nums">Roll Results: N/A</span><br><br>
<span class="total_rounds">Total Rounds: </span><br><br>
<button class="first_roll">First Roll</button>
<button class="second_roll hidden">Second Roll</button>
<button class="last_roll hidden">Last Roll</button>
<button class="end_turn hidden">End Turn</button>
<button class="end_round hidden">End Round</button>
<button class="end_game hidden">End Game</button>
</p>
<p class="winner hidden"> The winner is... </p>
<button class="restart hidden">Restart Game</button>
<script src="js/boston.js"></script>
</body>
</html>