-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (31 loc) · 1.17 KB
/
Copy pathindex.html
File metadata and controls
37 lines (31 loc) · 1.17 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
<link rel="stylesheet" href="styles.css" type="text/css"/>
<div class="tictactoeHeading">
<h1>Tic Tac Toe</h1>
</div>
<form>
<fieldset>
<legend>
Please select your preferred contact method:
</legend>
<div>
<input type="radio" id="singleModeRadio" name="gameMode" value="SingleMode" />
<label class="radioModeChoice" for="modeChoice1">Single Mode</label>
<input type="radio" id="twoPlayersModeRadio" name="gameMode" value="TwoPlayersMode" />
<label class="radioModeChoice" for="modeChoice2">Two Players Mode</label>
</div>
</fieldset>
<fieldset>
<legend>Please enter player's username: </legend>
<p>
<label class="playerUsername" for="player1Name">Player 1 username:</label>
<input type="text" id="player1Name" name="player1Name" />
</p>
<p>
<label class="playerUsername" for="player2Name">Player 2 username:</label>
<input type="text" id="player2Name" name="player2Name" />
</p>
</fieldset>
<div>
<button class="playButton" type="submit">Play</button>
</div>
</form>