-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (27 loc) · 984 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>PONG GAME</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<form>
<p class="options">Choose play mode: </p>
<div class="multiplayer">
<input type="radio" id="multi" name="options" value="multiplayer">
<label for="multi">multiplayer</label>
</div>
<div class="computer">
<input type="radio" id="comp" name="options" value="computer" checked>
<label for="comp">computer</label>
</div>
</form>
<div class="player1"> Player 1:<span class="score">0</span></div>
<div class="player2"><span class="player2name">Player 2:</span><span class="score">0</span></div>
<button class="btn">START</button>
<script src="script.js"></script>
</body>
</html>