website/web/index.html

36 lines
673 B
HTML
Raw Permalink Normal View History

2026-02-20 12:46:05 +00:00
<!DOCTYPE html>
<html lang="en">
2026-02-20 12:59:14 +00:00
2026-02-20 12:46:05 +00:00
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2026-02-20 13:12:06 +00:00
<title>3D Scene</title>
2026-02-20 12:46:05 +00:00
<style>
2026-02-20 12:59:14 +00:00
html,
body {
2026-02-20 12:46:05 +00:00
margin: 0;
padding: 0;
width: 100%;
height: 100%;
overflow: hidden;
background: #1a1a2e;
}
2026-02-20 12:59:14 +00:00
2026-02-20 12:46:05 +00:00
canvas {
width: 100%;
height: 100%;
display: block;
}
</style>
</head>
2026-02-20 12:59:14 +00:00
2026-02-20 12:46:05 +00:00
<body>
<canvas id="bevy-canvas"></canvas>
<script type="module">
2026-02-20 13:12:06 +00:00
import init from './3dscene.js';
2026-02-20 12:46:05 +00:00
init();
</script>
</body>
2026-02-20 12:59:14 +00:00
2026-02-20 12:46:05 +00:00
</html>