This repository has been archived on 2021-08-26. You can view files and clone it, but cannot push or open issues or pull requests.
canvas-receiver/index.html

18 lines
355 B
HTML
Raw Permalink Normal View History

2021-08-24 20:27:20 +00:00
<!DOCTYPE html>
<html>
<head>
<title>Canvas Receiver</title>
<script defer type="module" src="dist/app.js"></script>
</head>
<body>
<div id="canvas"></div>
</body>
<style>
2021-08-26 17:50:23 +00:00
#canvas {
2021-08-25 20:57:21 +00:00
width: 500px;
height: 500px;
border: 1px solid black;
2021-08-24 20:27:20 +00:00
}
</style>
2021-08-25 20:57:21 +00:00
</html>