28 lines
755 B
HTML
28 lines
755 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Party Cathedral</title>
|
|
|
|
<style>
|
|
/* Cheerful medieval aesthetic */
|
|
body {
|
|
background-color: #f5eeda; /* A light parchment color */
|
|
margin: 0;
|
|
overflow: hidden;
|
|
font-family: 'Inter', sans-serif;
|
|
}
|
|
canvas {
|
|
display: block;
|
|
}
|
|
</style>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script type="module" src="/src/main.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- 3D Canvas will be injected here by Three.js -->
|
|
</body>
|
|
</html>
|
|
<!-- textures sourced from https://animalia-life.club/ -->
|