-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
41 lines (34 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
34
35
36
37
38
39
40
41
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css"
integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm" crossorigin="anonymous">
<script src="https://cdnjs.cloudflare.com/ajax/libs/phaser/2.4.7/phaser.min.js"></script>
<link rel="stylesheet" href="style.css">
<script src="game.js"></script>
</head>
<body>
<nav class="navbar navbar-light " style="font-size: 25px; font-family: sans-serif; background-color: whitesmoke;">
<!--<img src="https://codingblocks.com/assets/images/cb/cblogo.png" width="124" height="45"-->
<!--class="d-inline-block align-top" alt="">-->
Minimum jumps DP Game
</nav>
<div id="container">
<div id="mynetwork">
</div>
<div id="container2">
<span id="temptext" style="width: 100%; text-align: center; font-size: large; padding: 10%">
</span>
</div>
</div>
<div>
<br>
<button type="button" class="btn btn-danger" id="generate-problem">Get New Problem</button>
<br>
<button type="button" class="btn btn-success" id="solve">Solve</button>
</div>
</body>
</html>