forked from xmlyqing00/PuzzleSolving-tool
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (23 loc) · 1.07 KB
/
index.html
File metadata and controls
30 lines (23 loc) · 1.07 KB
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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=Edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<title>Puzzle Solving</title>
<link rel="stylesheet" type="text/css" href="css/bootstrap.min.css" />
<link rel="stylesheet" type="text/css" href="css/style.css" />
<!-- jquery -->
<script type="text/javascript" src="js/lib/jquery-3.3.1.min.js"></script>
<!-- bootstrap -->
<script type="text/javascript" src="js/lib/popper.min.js"></script>
<script type="text/javascript" src="js/lib/bootstrap.min.js"></script>
</head>
<body>
<br>
<p>Web-based Puzzle Generator: <a href="generator.html">Generator</a><p>
<p>If you want to run the program in local, please refer to our python-based generator in <a href="https://github.com/xmlyqing00/PuzzleSolving-tool">github</a>.</p>
<br>
<p>Puzzle Debugger in Javascript: <a href="debugger.html">Debugger</a></p>
</body>
</html>