-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.htm
29 lines (29 loc) · 844 Bytes
/
index.htm
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
<htmL>
<head>
<link href="style.css" rel="stylesheet">
<script src="script.js"></script>
</head>
<body>
<div>
<label for="width">Width:</label>
<input id="width" value="3" type="number"/>
</div>
<div>
<label for="height">Height:</label>
<input id="height" value="3" type="number"/>
</div>
<div>
<label for="players">Players:</label>
<input id="players" value="2" type="number"/>
</div>
<div>
<label for="filltowin">Cells to Fill:</label>
<input id="filltowin" value="3" type="number"/>
</div>
<div>
<button onclick="start()">Start</button>
</div>
<div id="board">
</div>
</body>
</htmL>