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.
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>
|
|
|
|
#canvas > 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>
|