Files
Room-3D/index.html
2026-01-08 16:37:17 +03:00

30 lines
662 B
HTML

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="UTF-8" />
<title>3D Interior</title>
<link rel="stylesheet" href="css/style.css" />
<!-- IMPORT MAP (ОБЯЗАТЕЛЬНО) -->
<script type="importmap">
{
"imports": {
"three": "https://unpkg.com/three@0.158.0/build/three.module.js",
"three/examples/jsm/": "https://unpkg.com/three@0.158.0/examples/jsm/"
}
}
</script>
</head>
<body>
<canvas id="scene"></canvas>
<div class="ui">
<h1>Современный интерьер</h1>
<p>Интерактивная 3D-сцена</p>
</div>
<script type="module" src="js/main.js"></script>
</body>
</html>