-
Notifications
You must be signed in to change notification settings - Fork 1
/
gamemenu.html
40 lines (40 loc) · 1.16 KB
/
gamemenu.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
<!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>SoccerJS 2019</title>
<link rel="stylesheet" href="style.css" />
<link
href="https://fonts.googleapis.com/css?family=McLaren|Rajdhani|Righteous&display=swap"
rel="stylesheet"
/>
</head>
<body>
<audio src="./sounds/uefa.m4a" id="bgsound" autoplay></audio>
<div id="score">
Choose a game: <br>
<figure>
<div>
<span>Ball Keeper</span>
<span><a href="game1.html">Ball Keeper</a></span>
</figure>
<figure>
<div>
<span>Cone Training</span>
<span><a href="game2.html">Cone Training</a></span>
</figure>
<figure>
<div>
<span>10 Penalties</span>
<span><a href="game3.html">10 Penalties</a></span>
</figure>
<figure>
<div>
<span>Back</span>
<span><a href="menu.html">Back</a></span>
</figure>
</div>
</body>
</html>