blob: a1327b4018177bf7a436a7f4d35fd04ef77169cb (
plain) (
tree)
|
|
<!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>
|