wgpu/index.html
2025-04-15 05:34:18 -05:00

30 lines
556 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>WebGPU</title>
<style>
body {
margin: 0;
background-color: #222;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
canvas {
border: 1px solid #555;
background-color: black;
}
</style>
</head>
<body>
<canvas id="webgpu-canvas"></canvas>
<script type="module" src="./index.js"></script>
</body>
</html>