diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2019-02-05 14:20:56 +0100 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2019-02-05 14:20:56 +0100 |
commit | 42d5a97baceb8ee2ff3cec669a2077e876845b83 (patch) | |
tree | fa2c445194068e78a2cc8c4b59cff8589a34229a /index.html |
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> |