-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.html
36 lines (33 loc) · 1.25 KB
/
setup.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
<!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="style.css" />
<title>Pig Game Setup</title>
</head>
<body>
<section id="game-setup">
<h1>Welcome to the Pig Game</h1>
<form id="setup-form">
<div class="form-group">
<label for="player1-name">Player 1 Name:</label>
<input type="text" id="player1-name" placeholder="Enter Player 1 Name" required />
</div>
<div class="form-group">
<label for="player2-name">Player 2 Name:</label>
<input type="text" id="player2-name" placeholder="Enter Player 2 Name" required />
</div>
<div class="form-group">
<label for="score-limit">Score Limit:</label>
<input type="number" min="100" id="score-limit" placeholder="Enter Score Limit (e.g., 100)" required />
</div>
<button type="button" id="start-game">Start Game</button>
</form>
</section>
<footer>
<p style="text-align: center;">© 2023 Pig Game - Kabri Acid</p>
</footer>
<script src="script.js"></script>
</body>
</html>