-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (19 loc) · 723 Bytes
/
index.html
File metadata and controls
26 lines (19 loc) · 723 Bytes
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
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-3.7.1.js" integrity="sha256-eKhayi8LEQwp4NKxN+CfCh+3qOVUtJn3QNZ0TciWLP4=" crossorigin="anonymous"></script>
<link rel="stylesheet" href="script.css">
</head>
<body style="background-size: cover;">
<!-- loading screen -->
<div id="title" class="title">Welcome to Bloxburg<br></div>
<div id="items">Items found: <span id="itemList"></span>/6</div>
<div id="splash">
<img src="assets/bloxburgLoading.gif" style="display: block; margin: 0 auto;">
</div>
<div id="main" style="display: none;">
<canvas id='mycanvas' style="border: 5px solid #ffffff; display: block; margin: auto"></canvas>
</div>
<script src="script.js"></script>
</body>
</html>