-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (27 loc) · 927 Bytes
/
Copy pathindex.html
File metadata and controls
30 lines (27 loc) · 927 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<!doctype html>
<html lang="es">
<head>
<meta charset="utf-8" />
<title>roomforge — planos y maquetas</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<header>
<h1>roomforge</h1>
<p>Planos y maquetas de la remodelación. Edita <code>data/room.js</code>, <code>data/furniture.js</code> y <code>data/layouts.js</code> para actualizar todo.</p>
</header>
<main id="layouts"></main>
<footer>
Abre este archivo directo en el navegador (doble clic) — no requiere servidor.
</footer>
<script src="data/room.js"></script>
<script src="data/furniture.js"></script>
<script src="data/layouts.js"></script>
<script src="js/geometry.js"></script>
<script src="js/floorplan.js"></script>
<script src="js/furniture-render.js"></script>
<script src="js/closet-detail.js"></script>
<script src="js/isometric.js"></script>
<script src="js/main.js"></script>
</body>
</html>