about summary refs log tree commit diff stats
path: root/js/toadmode/index.html
blob: a1327b4018177bf7a436a7f4d35fd04ef77169cb (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');}
        /* https://shantellsans.com/process */
        @import url('https://fonts.googleapis.com/css2?family=Shantell+Sans&display=swap');
        body {
            margin: 0;
            padding: 0;
            background-color: #000;
            /* font-family: 'APL386', monospace; */
            font-family: 'Shantell Sans', sans-serif;
        }
        canvas {
            display: block;
        }
    </style>
</head>
<body>
    <canvas id="toad"></canvas>
    <script src="toad.js"></script>
</body>
</html>