19 lines
367 B
HTML
19 lines
367 B
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<title>Canvas Receiver</title>
|
||
|
<script defer type="module" src="dist/canvasReceiver.js"></script>
|
||
|
</head>
|
||
|
<body>
|
||
|
<div id="canvas"></div>
|
||
|
</body>
|
||
|
|
||
|
<style>
|
||
|
#canvas {
|
||
|
width: 500px;
|
||
|
height: 500px;
|
||
|
border: 1px solid black;
|
||
|
}
|
||
|
</style>
|
||
|
</html>
|