-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGame.html
More file actions
33 lines (26 loc) · 1.05 KB
/
Game.html
File metadata and controls
33 lines (26 loc) · 1.05 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
<!DOCTYPE html>
<html>
<head>
<title> LightsOut</title>
<link href="https://fonts.googleapis.com/css?family=Abril+Fatface|Limelight|Permanent+Marker&display=swap" rel="stylesheet">
<link rel="stylesheet" href="index.css">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<div id="background" class="full-height">
<label id="title">Lights Out</label><br>
<label id="nextSolution"></label><br><br>
<label id="time">Time:</label> <b><label id="minutes">00</label>:<label id="seconds">00</label></b>
<label id="ready"></label>
  <button id="button1" type="button" onclick="pause()">Pause</button>
<p id="container"></p>
<p id="count"></p>
<p id="stats"></p>
<p id="stats2"></p>
<!-- https://www.quackit.com/javascript/javascript_refresh_page.cfm -->
<button id="button2" type="button" onClick="document.location.reload(true)">New Game</button>
</div>
<script src="script.js"></script>
</body>
</html>