-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (54 loc) · 2.26 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
47
48
49
50
51
52
53
54
55
56
57
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project AI</title>
<link rel="stylesheet" href="./styles/bootstrap/bootstrap.min.css">
<link rel="stylesheet" href="./styles/index.css">
</head>
<body>
<main class="container">
<div class="row">
<div class="col-12 col-lg-6">
<div class="desc-con">
<h1>15 Puzzle Game</h1>
<p style="font-size: 22px;">
AI course project
</p>
<p style="font-size: 20px; margin-bottom: 8px;">
Participants
</p>
<ul>
<li>Mohammad Soroush Zamzam</li>
<li>Parsa Mohammadrezaie</li>
<li>AmirMohammad Taheri</li>
</ul>
<div class="d-flex">
<button onclick="SolveBoard('dfs', this)" id="solve-dfs" style="width: 120px;" type="button"
class="btn btn-dark me-2"> DFS</button>
<button onclick="SolveBoard('a*', this)" id="solve-a" style="width: 120px;" type="button"
class="btn btn-dark me-2">A*</button>
<button onclick="SolveBoard('hill', this)" id="solve-hill" style="width: 160px;" type="button"
class="btn btn-dark">HILL - CLIMBING</button>
</div>
</div>
</div>
<div class="col-12 col-lg-6">
<div class="box-con">
<div class="row">
</div>
</div>
<h4 id="step-text" class="text-align-center mt-3">Step: 0</h4>
</div>
</div>
</main>
</body>
<script src="./scripts/dependencies/heap.js"></script>
<script src="./scripts/algorithm/index.js"></script>
<script src="./scripts/dependencies/bootstrap/bootstrap.bundle.min.js"></script>
<script src="./scripts/dependencies/loading/index.js"></script>
<script src="./scripts/presentation/index.js"></script>
</script>
</html>