webgpu-app/index.html

23 lines
400 B
HTML

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>WebGPU</title>
<style>
canvas {
position: absolute;
left: 0;
top: 0;
padding: 0;
border: 0;
width: 100%;
height: 100%;
}
</style>
<script src="index.js" type="module"></script>
</head>
<body>
<canvas></canvas>
</body>
</html>