-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (35 loc) · 1.49 KB
/
index.html
File metadata and controls
37 lines (35 loc) · 1.49 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Simple Math Game</title>
<link rel="stylesheet" href="indexstyle.css">
</head>
<body>
<video loop autoplay muted id="myVideo">
<source src="Vj Loops - 32745.mp4">
</video>
<main id="main">
<div class="show">
<h1 class="">What Game would you like to play?</h1>
<section class="show">
<h4>Level 1</h4>
<a href="additiongame.html"><button id="computerguess">ADDITION GAME</button></a>
<p>The computer will generate two numbers for you to add together, you have 10 seconds to hit a new highscore</p>
</section>
<section class="show">
<h4>Level 2</h4>
<a href="subtractgame.html"><button id="computerguess">SUBTRACTION GAME</button></a>
<p>The computer will generate two numbers for you to subtract, you have 10 seconds to hit a new highscore</p>
</section>
<section class="show">
<h4>Level 3</h4>
<a href="multiplicationgame.html"><button id="computerguess">MULTIPLICATION</button></a>
<p>The computer will generate two numbers for you to multiply, you have 10 seconds to hit a new highscore</p>
</section>
</div>
</main>
</body>
</html>