-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
55 lines (45 loc) · 802 Bytes
/
index.html
File metadata and controls
55 lines (45 loc) · 802 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
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
54
55
<!doctype html>
<html lang=""en">
<head>
<title>PuzzleDrop WebAssembly Demo</title>
<style type="text/css">
.div1 {
text-align: center;
}
.can1 {
width: 70%;
height: auto;
}
input {
font-size: 24px;
}
.con1 {
text-align: center;
}
.con2 {
text-align: center;
}
body {
background-color: #000000;
}
a {
color: rgb(255,255,255);
}
.span1 {
color: rgb(255,255,255);
font-size: 32px;
}
</style>
</head>
<body>
<div class="con2">
<span class="span1"><b><a href="https://github.com/lostjared/PuzzleDrop.Web">PuzzleDrop</a></b></span>
</div><br>
<div class="div1">
<canvas class="can1" id="can1" width="1280" height="720">
</canvas>
</div>
</body>
<script src="puzzle.js"></script>
<script src="puzzle_drop.js"></script>
</html>