-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (45 loc) · 1.71 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Sudoku</title>
<link rel="stylesheet" href="style.css" type="text/css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<h1>Sudoku</h1>
<div class = "settings">
<div>
<h3>Difficulty : </h3>
<label for="diff"></label>
<input type="radio" name="diff" value="Easy" checked> Easy
<input type="radio" name="diff" value="Medium"> Medium
<input type="radio" name="diff" value="Hard"> Hard
</div>
<div>
<h3>Time : </h3>
<input type="radio" name="time" value="30" checked> 30 Min
<input type="radio" name="time" value="45"> 45 Min
<input type="radio" name="time" value="60"> 60 Min
</div>
<div>
<h3>Theme : </h3>
<input type="radio" name="theme" value="Light"> Light
<input type="radio" name="theme" value="Dark" checked> Dark
</div>
</div>
<button id="startBtn" onclick="startGame()">New Game</button>
</header>
<div id="stats" class="stats">
<p id="timer"></p>
<p id="lives"></p>
</div>
<div id="game">
<div id="board" class="hidden"></div>
<div id="number-plate" class="hidden"></div>
</div>
<footer><p>Made by Shaurya</p></footer>
</body>
</html>