This repository has been archived on 2021-08-26. You can view files and clone it. You cannot open issues or pull requests or push a commit.
2021-08-24 22:27:20 +02: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 19:50:23 +02:00
|
|
|
#canvas {
|
2021-08-25 22:57:21 +02:00
|
|
|
width: 500px;
|
|
|
|
|
height: 500px;
|
|
|
|
|
border: 1px solid black;
|
2021-08-24 22:27:20 +02:00
|
|
|
}
|
|
|
|
|
</style>
|
2021-08-25 22:57:21 +02:00
|
|
|
</html>
|