31 lines
818 B
Text
31 lines
818 B
Text
<!DOCTYPE html>
|
|
<html lang="es">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
|
|
<title>3Dcomunity</title>
|
|
<link rel="stylesheet" href="styles.css" />
|
|
<!-- Web Component del visor -->
|
|
<script type="module" src="https://unpkg.com/@google/model-viewer/dist/model-viewer.min.js"></script>
|
|
</head>
|
|
<body>
|
|
<!-- HEADER -->
|
|
<header class="site-header">
|
|
<h1 class="site-title">3Dcomunity</h1>
|
|
<nav class="nav-menu">
|
|
<button onclick="location.href='code.html'">Code</button>
|
|
<button onclick="location.href='gallery.html'">Gallery</button>
|
|
<button onclick="location.href='tutorials.html'">Tutorials</button>
|
|
<button onclick="location.href='about.html'">About</button>
|
|
</nav>
|
|
</header>
|
|
|
|
|
|
|
|
|
|
</main>
|
|
</body>
|
|
</html>
|
|
|
|
|
|
|