24 lines
478 B
HTML
24 lines
478 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Document</title>
|
|
</head>
|
|
<body>
|
|
<canvas id="canvas" height="500", width="500"></canvas>
|
|
</body>
|
|
</html>
|
|
|
|
<script src="./main.js"></script>
|
|
|
|
<style>
|
|
body {
|
|
background-color: var(--vscode-editor-background);
|
|
color: white;
|
|
}
|
|
#canvas {
|
|
top: 20px;
|
|
position: absolute;
|
|
}
|
|
</style> |