-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
53 lines (47 loc) · 1.83 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="./plugins/bootstrap-4.0.0/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="./plugins/bootswatch/bootstrap.min.css">
<link rel="stylesheet" href="./custom/css/main.css">
<link rel="shortcut icon" href="./custom/img/NumberPuzzleBoard.png" type="image/x-icon">
<title>Number Puzzle</title>
</head>
<body>
<h1 class="text-center bg-secondary py-2">Number Puzzle Game</h1>
<div class="container">
<div class="row">
<div class="col-md-5 mx-auto">
<button class="btn btn-success btn-block my-3" id="btnNewGame">NEW GAME</button>
<div class="form-group">
<label for="">Choose level</label>
<select id="selectLevelGame" class="form-control">
<option value="3">3 x 3</option>
<option value="4">4 x 4</option>
<option value="5">5 x 5</option>
</select>
</div>
</div>
</div>
<div class="row my-2">
<div class="col-md-5 mx-auto">
<h5>Move Count: <span id="moveCount"></span></h5>
<h5>Time Left: <span id="timeLeft"></span></h5>
</div>
</div>
<div class="row">
<div class="col-md-8 mx-auto">
<div id="gameArea" class="bg-primary"></div>
</div>
</div>
</div>
<script src="./plugins/bootstrap-4.0.0/assets/js/vendor/jquery-slim.min.js"></script>
<script src="./plugins/bootstrap-4.0.0/assets/js/vendor/popper.min.js"></script>
<script src="./plugins/bootstrap-4.0.0/dist/js/bootstrap.min.js"></script>
<script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script>
<script src="./custom/js/main.js"></script>
</body>
</html>