-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
42 lines (40 loc) · 1.76 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
35
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>F1 Paper!</title>
<script>
</script>
</head>
<body>
<h1>F1 Paper!</h1>
<p>The game is not finished yet, but you can try playing it!</p>
<p>
<strong>The main rule is not forced, so you shall follow it:</strong><br />
If you <em>go out</em> of the circuit, you have to go on it again,<br/>
<strong>but</strong> you have to do it before your leave point.<br/>
<img src="explain.png">
</p>
<form method="get" action="game.html" >
Select your map:<br/>
<input type="radio" name="map" value="1" checked> Simple map<br/>
<input type="radio" name="map" value="2"> Complex map<br/><br/>
Select your portion difficulties:<br/>
<input type="radio" name="difficulty" value="1"> Easiest<br/>
<input type="radio" name="difficulty" value="2" checked> Normal<br/>
<input type="radio" name="difficulty" value="3"> Hard<br/>
<input type="radio" name="difficulty" value="4"> Alexiest<br/>
<input type="radio" name="difficulty" value="5"> Random between the four difficulties<br/><br/>
Select number of players:<br/>
<input type="radio" name="players" value="1" checked> 1<br/>
<input type="radio" name="players" value="2"> 2<br/>
<input type="radio" name="players" value="3"> 3<br/>
<input type="radio" name="players" value="4"> 4<br/>
<input type="radio" name="players" value="5"> 5<br/>
<input type="radio" name="players" value="6"> 6<br/>
<input type="radio" name="players" value="7"> 7<br/>
<input type="radio" name="players" value="8"> 8<br/><br/>
<input type="submit" value="Play" />
</form>
</body>
</html>