-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
67 lines (61 loc) · 1.46 KB
/
index.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Lights Out</title>
<link rel="stylesheet" type="text/css" href="main.css">
<link rel="shortcut icon" href="https://github.com/Ojaswy/Lights-Out/blob/master/favicon.ico" >
<style>
body {
background-color: #e82e37;
}
</style>
</head>
<body link = "pink">
<div id="board">
<button id="shuffle">Shuffle</button>
<button id="solve">Show Solution</button>
<button id="hide" class="not-show">Hide Solution</button>
<br>
<br>
<div class="row">
<div id="1"></div>
<div id="2"></div>
<div id="3"></div>
<div id="4"></div>
<div id="5"></div>
</div>
<div class="row">
<div id="6"></div>
<div id="7"></div>
<div id="8"></div>
<div id="9"></div>
<div id="10"></div>
</div>
<div class="row">
<div id="11"></div>
<div id="12"></div>
<div id="13"></div>
<div id="14"></div>
<div id="15"></div>
</div>
<div class="row">
<div id="16"></div>
<div id="17"></div>
<div id="18"></div>
<div id="19"></div>
<div id="20"></div>
</div>
<div class="row">
<div id="21"></div>
<div id="22"></div>
<div id="23"></div>
<div id="24"></div>
<div id="25"></div>
</div>
</div>
<a href="https://en.wikipedia.org/wiki/Lights_Out_(game)" target="_blank">Rules</a>
<script src="main.js"></script>
</body>
</html>