-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
26 lines (26 loc) · 952 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="Solve sudoku easily without using stress" >
<link rel="stylesheet" href="styles.css">
<title>Sudoku Solver</title>
<link rel="icon" href="sudoku.png">
</head>
<body>
<div class="container">
<h1>Sudoku Solver</h1>
<div class="input-container">
<label for="numbers">Number of Given Digits:</label>
<input type="number" id="numbers" min="17" max="81" style="border-radius: 15px;
background-color: rgba(240, 248, 255, 0.416);">
</div>
<div class="sudoku-container"></div>
<button class="solve-btn">Solve</button>
<button class="reset-btn">Reset</button>
</div>
<div class="loader"></div>
<script src="script.js"></script>
</body>
</html>