-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 729 Bytes
/
Copy pathindex.html
File metadata and controls
25 lines (25 loc) · 729 Bytes
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
<!DOCTYPE HTML>
<html>
<head>
<title>Sliding Block Puzzle Solver</title>
<style>
.text-fill {
margin: 10px 20px;
}
</style>
</head>
<body style="text-align: center">
<h1>Sliding Block Puzzle Solver</h1>
<div style="display: flex; justify-content: center">
<div class="text-fill">
<h2>Initial State</h2>
<textarea rows="16" cols="16"></textarea>
</div>
<div class="text-fill">
<h2>Goal State</h2>
<textarea rows="16" cols="16"></textarea>
</div>
</div>
<button type="button">Solve</button>
</body>
</html>