-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpage2.html
More file actions
30 lines (24 loc) · 765 Bytes
/
page2.html
File metadata and controls
30 lines (24 loc) · 765 Bytes
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
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<title>Click Game</title>
<link rel="stylesheet" href="styles.css">
<link href="https://fonts.googleapis.com/css2?family=Audiowide&display=swap" rel="stylesheet">
</head>
<body>
<div class="board">
<div class="timer">
<span id="keyPress"> <span id="score">0</span> Clicks</span>
<div class="timeLeft">
<span id = "timer"> 10</span><br/>
</div>
</div>
<div class="click">
<button onclick="hi()" id="butn" type="button">Start</button>
</div>
</div>
<button onclick=window.location.href='page2.html' id="playAgain" type="button"><span>Play Again</span></button>
<script src="index.js" charset="utf-8"></script>
</body>
</html>