-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (26 loc) · 931 Bytes
/
index.html
File metadata and controls
28 lines (26 loc) · 931 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
<!-- -------------------- Sudoku -------------------- -->
<!-- Written By: Aarni Junkkala -->
<!DOCTYPE html>
<head>
<title>Sudoku</title>
<link rel="stylesheet" href="style.css">
</head>
<body>
<h1>Sudoku</h1>
<p>Created By: Aarni Junkkala</p>
<p id="difficultyText">Normal</p>
<div class="game"></div>
<br>
<div class="settings">
<button onclick="generateNewBoard(0.3,'Easy')" class="easy">Easy</button>
<button onclick="generateNewBoard(0.5,'Normal')" class="normal">Normal</button>
<button onclick="generateNewBoard(0.7,'Hard')" class="hard">Hard</button>
<button onclick="reset()">Reset</button>
</div>
<br>
<div class="settings">
<input type="text" id="width" placeholder="Width" value="">
<input type="text" id="height" placeholder="Height" value="">
</div>
</body>
<script src="sudoku.js"></script>