blob: 929b4ba03ed13a0e38b0b7e3af4069b1cd3124c2 (
plain) (
blame)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>toad mode</title>
<style>
/* https://github.com/abrudz/APL386 */
@font-face {font-family: 'APL386';src: url('APL386.ttf');}
body {
margin: 0;
padding: 0;
background-color: #000;
font-family: 'APL386', monospace;
}
canvas {
display: block;
}
.context-menu-item:hover {
text-decoration: underline;
}
</style>
</head>
<body>
<canvas id="toad"></canvas>
<script src="toad.js"></script>
</body>
</html>
|