25 lines
No EOL
652 B
HTML
25 lines
No EOL
652 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Sudoku</title>
|
|
<link rel="stylesheet" href="./styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
<div class="sudoku-container">
|
|
<table id="sudoku-board">
|
|
<!-- You can dynamically generate the sudoku board using JavaScript -->
|
|
</table>
|
|
<button class="validButton" onclick="isValidSudoku(getBoardFromInputs())">IsValid?</button>
|
|
<p id="result">Result: </p>
|
|
</div>
|
|
|
|
|
|
<script src="./script.js"></script>
|
|
<script src="./yourScript.js"></script>
|
|
</body>
|
|
|
|
</html> |