websocket-canvas/receiver.html

19 lines
366 B
HTML
Raw Normal View History

<!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 {
2021-08-26 19:30:39 +00:00
width: 100%;
height: 800px;
border: 1px solid black;
}
</style>
</html>