-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplayer.html
33 lines (33 loc) · 908 Bytes
/
player.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="styles.css" />
<script src="player.js" defer></script>
<title>Tic-Tac-Toe</title>
</head>
<body>
<div class="player-container">
<form class="players" name="players" id="players" action="./game.html">
<label class="player" for="player_1">Player 1</label>
<input
class="player"
type="text"
name="player_1"
id="player_1"
required
/>
<label class="player" for="player_2">Player 2</label>
<input
class="player"
type="text"
name="player_2"
id="player_2"
required
/>
<input type="submit" class="submit button" />
</form>
</div>
</body>
</html>