-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
30 lines (30 loc) · 973 Bytes
/
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
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/style.css" />
<link rel="icon" href="img/favicon.png" type="image/x-icon" />
<title>Neon Bricks</title>
<script src="jQuery/SwalScript.js"></script>
</head>
<body>
<div id="head">
<p>NEON BRICKS</p>
</div>
<div>
<canvas id="myCanvas" width="480" height="320"></canvas>
</div>
<div id="gumbi">
<button id="reset" onclick="document.location.reload()">RESET</button>
<button id="start" onclick="start();">START</button>
<button id="ins" onclick="ins();">INSTRUCTIONS</button>
<div id="dol">
<button id="pause" onclick="stop();">PAUSE</button>
</div>
</div>
<script src="jQuery/jQuery.js"></script>
<div id="footer">
<p>© Rok Cvjetkovic</p>
</div>
</body>
</html>