diff options
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/index.html b/index.html new file mode 100644 index 0000000..474f74f --- /dev/null +++ b/index.html @@ -0,0 +1,20 @@ +<!doctype html> +<html> +<head> +<meta charset="utf-8"> +<title>Sudoku HTML</title> +<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> +<link rel="stylesheet" href="index.css"> +<script src="index.js"></script> +</head> +<body> +<canvas id="cvs" width="@@SS@@" height="@@SS@@"></canvas><br> +<div id="digits-container"> + <table id="digit-table-small"></table> + <div class="spacer"></div> + <table id="digit-table-large"></table> +</div> + +<div id="status"></div> +</body> +</html> |