-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage2.html
40 lines (38 loc) · 1.1 KB
/
page2.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>
<title>React! | Game!</title>
<meta name="color-scheme" content="light only">
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="stylesheet" href="https://cdn.simplecss.org/simple.css" />
<link rel="stylesheet" href="styles.css" />
<script type="module" src="script.js"></script>
</head>
<body>
<div class="container">
<nav>
<a href="index.html">Back To Menu</a>
</nav>
<h1>React!</h1>
<ul class="notice">
<li>
Click the button below to start.
</li>
<li>
Wait for the box to turn green and click as quick as you can.
</li>
<li>
Wait for the box to turn green and click as quick as you can.
</li>
<li>
The shortest time you have, the quicker you are.
</li>
<li>
Compare with your friends 😊
</li>
</ul>
<button id="myButton" class="active"></button>
</div>
</body>
</html>