-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (39 loc) · 1.13 KB
/
index.html
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
38
39
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Museos en Bogotá</title>
<link rel="stylesheet" href="css/styles.css">
</head>
<body>
<header>
<h1>Bienvenido a los Museos de Bogotá</h1>
<nav>
<ul>
<li><a href="#home">Inicio</a></li>
<li><a href="#museos">Museos</a></li>
<li><a href="#contacto">Contacto</a></li>
</ul>
</nav>
</header>
<main>
<section id="home">
<h2>Explora los mejores museos de la ciudad</h2>
<p>Descubre la historia, el arte y la cultura que Bogotá tiene para ofrecer.</p>
</section>
<section id="museos">
<h2>Lista de Museos</h2>
<ul>
<li>Museo del Oro</li>
<li>Museo Nacional</li>
<li>Museo de Arte Moderno</li>
</ul>
</section>
</main>
<footer>
<p>© 2024 Visita Museos en Bogotá</p>
</footer>
<script src="js/scripts.js"></script>
</body>
</html>