Skip to content

Commit

Permalink
primera version con boilerplate
Browse files Browse the repository at this point in the history
  • Loading branch information
arqtron committed Jun 23, 2024
1 parent 671877c commit c815418
Showing 1 changed file with 61 additions and 1 deletion.
62 changes: 61 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,61 @@
"Hello World"
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Plantilla Web Temática</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<nav id="menu">
<ul>
<li><a href="#tema1">Tema 1</a></li>
<li><a href="#tema2">Tema 2</a></li>
<li><a href="#tema3">Tema 3</a></li>
</ul>
</nav>
</header>

<main id="content">
<!-- Contenido de los temas -->
<section id="tema1">
<h2>Tema 1</h2>
<p>Contenido relacionado con el Tema 1.</p>
<!-- Enlaces dentro del tema -->
<ul>
<li><a href="enlace1.html">Subtema 1.1</a></li>
<li><a href="enlace2.html">Subtema 1.2</a></li>
</ul>
</section>

<section id="tema2">
<h2>Tema 2</h2>
<p>Contenido relacionado con el Tema 2.</p>
<!-- Enlaces dentro del tema -->
<ul>
<li><a href="enlace3.html">Subtema 2.1</a></li>
<li><a href="enlace4.html">Subtema 2.2</a></li>
</ul>
</section>

<section id="tema3">
<h2>Tema 3</h2>
<p>Contenido relacionado con el Tema 3.</p>
<!-- Enlaces dentro del tema -->
<ul>
<li><a href="enlace5.html">Subtema 3.1</a></li>
<li><a href="enlace6.html">Subtema 3.2</a></li>
</ul>
</section>
</main>

<footer>
<!-- Información de contacto o créditos -->
</footer>

<!-- Scripts -->
<script src="scripts.js"></script>
</body>
</html>

0 comments on commit c815418

Please sign in to comment.