-
Notifications
You must be signed in to change notification settings - Fork 1
/
Index.html
34 lines (32 loc) · 1.11 KB
/
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
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<title>Index</title>
<link href="Style.css" rel="stylesheet" />
</head>
<body id="welcomeScreen">
<div>
<label id="title">EGG Collecting</label>
<form id="myForm" method="get" action="Game.html">
<input id="getUserName" name="userName" type="text" value="Enter Your Name" />
<span id="error">!</span>
<table id="radioTable">
<tr>
<td>
<input class="radioLevel" type="radio" name="gameLevel" value="1"checked>Easy</input>
</td>
<td>
<input class="radioLevel" type="radio" name="gameLevel" value="3">Normal</input>
</td>
<td>
<input class="radioLevel" type="radio" name="gameLevel" value="6">Hard</input>
</td>
</tr>
</table>
<td colspan="4">
<input id="Restart" type="button" value="Start Game" />
</form>
</div>
<script src="Index.js"></script>
</body>
</html>