-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
31 lines (31 loc) · 737 Bytes
/
Copy pathindex.html
File metadata and controls
31 lines (31 loc) · 737 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
<!DOCTYPE html>
<html>
<head>
<title>SAT</title>
<base href="./" />
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<style>
body {
margin: 0;
}
#canvas {
position: absolute;
top: 50%;
left: 50%;
width: 48rem;
height: 36rem;
transform: translate(-50%, -50%);
}
</style>
</head>
<body>
<canvas id="canvas" width="768" height="576"></canvas>
<script type="text/javascript" src="lib.js"></script>
<script type="text/javascript" src="sat.js"></script>
<script type="text/javascript" src="example.js"></script>
<script>
main()
</script>
</body>
</html>