Files
WarhammerQuest/index.html
2025-12-30 23:24:58 +01:00

33 lines
732 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Warhammer Quest 3D</title>
<style>
body {
margin: 0;
overflow: hidden;
background-color: #1a1a1a;
color: white;
font-family: sans-serif;
}
#info {
position: absolute;
top: 10px;
left: 10px;
background: rgba(0, 0, 0, 0.7);
padding: 10px;
pointer-events: none;
}
</style>
</head>
<body>
<div id="info" style="display:none;"></div>
<script type="module" src="/src/main.js"></script>
</body>
</html>