-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
62 lines (43 loc) · 1.29 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
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width initial-scale=1.0 user-scalable=no">
<div id="pro">
<img src="logo.jpg" alt="logo">
</div>
<h1 id="title">Sudoku Game</h1>
<link rel="stylesheet" href="sudoku.css">
<script src="script.js"></script>
<script type="text/javascript" src="watch.js"></script>
</head>
<!-- <div class="container">
<div id="display">
00:00:00
</div>
<div class="buttons">
<button id="startStop" onclick="startStop()">Start</button> <button id="reset" onclick="reset()">Reset</button>
</div>
</div> -->
<body>
<title>Sudoku game</title>
<h2 id="er"> Errors : </h2>
<h2 id="errors"> 0 </h2>
<h2 id="dev"></h2>
<!-- 9x9 board -->
<div id="board"></div>
<br>
<div id="digits"></div>
<p id="demo"></p>
</body>
<div id="back">
<a href="pro.html">
<button class="button-27" role="button"><b> ❮ Back </b> </button>
</a>
</div>
<div id="plus">
<button class="button-64" onclick="game()" role="button"><span class="text"><b>New Game</b></span></button>
</div>
<div class="link">
<a href="https://www.w3schools.com/"><b> Source Code</b> </a>
</div>
</html>