-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
33 lines (29 loc) · 1.37 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
<!DOCTYPE html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>15-puzzle Solutions</title>
<script src="https://d3js.org/d3.v7.min.js"></script>
<script src="https://unpkg.com/gojs@2.3.8/release/go.js"></script>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.3.1/dist/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous">
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="p-4 w-full">
<script src="assets/graph.js"></script>
<script src="assets/puzzle.js"></script>
<script src="assets/draw.js"></script>
<script src="assets/script.js"></script>
<script src="assets/generate-images.js"></script>
<nav class="navbar navbar-expand-lg navbar-dark bg-dark static-top">
<div class="navbar-nav" id="puzzleContainer"></div>
</nav>
<div id="graphDiv" class="graph-container">
<canvas></canvas>
<div class="overlay-container">
<div class="hidden-div"></div>
</div>
</div>
</div>
</body>
</html>