-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
46 lines (41 loc) · 1.21 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="./style.css" type="text/css" >
<script src="https://d3js.org/d3.v5.min.js"></script>
<script src="https://unpkg.com/[email protected]/viz.js" type="javascript/worker"></script>
<script src="https://unpkg.com/[email protected]/build/d3-graphviz.min.js"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<div id="graph" style="text-align: center;"></div>
<title>Visualizing recursion</title>
</head>
<body>
<h1>sudoku solver recursion visualizer</h1>
<table id="input_area">
<tbody>
</tbody>
</table>
<div id="solve_button">
solve!
</div>
<!--
user console area
-->
<h2>User Console</h2>
<div id="user_console">
</div>
<!--number key pad-->
<div id = "number_key_pad">
<div id = "number_key_pad_border">
<table id = "number_key_pad_table">
<tbody id = "number_key_pad_tbody"></tbody>
</table>
</div>
</div>
<div class=".mycontainer">
<div id="mynetwork">
</div>
<script type="module" src="./main.js"></script>
</body>
</html>