-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
52 lines (51 loc) · 1.34 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
<!DOCTYPE html>
<html>
<head>
<title>Jump Flood Algorithm</title>
<script src="utilities.js"></script>
<script src="script.js"></script>
<style>
body {
text-align : center;
}
canvas {
position: absolute;
top: 0;
left: 0;
z-index: 5;
}
header {
position: absolute;
z-index: 100;
padding: 2px;
padding-left: 10px;
padding-right: 10px;
margin: auto;
}
button {
position: relative;
z-index: 100;
font-size: 1.5em;
padding: 2px;
padding-left: 10px;
padding-right: 10px;
margin: auto;
border: 0px;
background-color: lightsteelblu;
border-radius: 5px;
}
button:hover {
background-color: lightblue;
}
</style>
</head>
<body>
<div id="content">
<canvas>Your browser does not seem to support HTML canvas.</canvas>
</div>
<div class="header">
<button type="button" id="step-button" style="">Start</button>
<button type="button" id="play-button" style="">Play</button>
</div>
</body>
</html>