-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (36 loc) · 1.15 KB
/
index.html
File metadata and controls
37 lines (36 loc) · 1.15 KB
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
31
32
33
34
35
36
37
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Retro-Gaming Hub | Inicio</title>
<link rel="stylesheet" href="CSS/style.css">
</head>
<body>
<header>
<h1>Retro-Gaming Hub</h1>
<nav>
<ul>
<li><a href="index.html">Inicio</a></li>
<li><a href="nosotros.html">Nosotros</a></li>
<li><a href="servicios.html">Servicios</a></li>
<li><a href="blog.html">Blog</a></li>
<li><a href="contacto.html">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<section>
<h2>Bienvenidos al Mundo Retro</h2>
<img src="./Assets/inicio.jpg" alt="Consolas clásicas">
<p>Explora la estructura y el diseño de la era dorada de los videojuegos.</p>
</section>
<article>
<h3>Novedades</h3>
<p>Estamos lanzando nuestra nueva plataforma de preservación digital.</p>
</article>
</main>
<footer>
<p>© 2026 Proyecto Web - Estructura Semántica Documentada</p>
</footer>
</body>
</html>