desktop-daemon/index.html

24 lines
434 B
HTML
Raw Normal View History

2022-08-06 14:17:27 -04:00
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
2022-08-06 19:09:23 -04:00
<title>Desktop Daemon</title>
<link rel="icon" type="img/png" src="assets/logo.png">
<style>
html, body {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
overflow: hidden;
}
</style>
2022-08-06 14:17:27 -04:00
</head>
<body>
2022-08-06 19:09:23 -04:00
<canvas id="canvas"></canvas>
2022-08-06 14:17:27 -04:00
<script src="./dist/renderer.js"></script>
</body>
</html>