-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathmenu.html
More file actions
37 lines (34 loc) · 1.53 KB
/
menu.html
File metadata and controls
37 lines (34 loc) · 1.53 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">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Menú Circular - HTML5</title>
<meta name="keywords" content="HTML5, diseño web, tutorial, menú circular, formularios, estilos">
<meta name="description" content="Sitio de demostración para crear un menú circular con HTML5 y CSS">
<link rel="stylesheet" type="text/css" href="botones.css">
</head>
<body>
<header role="banner">
<h1>Creando menú circular para clase</h1>
<p>Un ejemplo práctico de diseño de menú circular con HTML5 y CSS</p>
</header>
<nav role="navigation" aria-label="Menú principal">
<ul class="circulos">
<li><a href="basicohtml5.html" aria-label="Conceptos básicos de HTML5"><span>Básico HTML5</span></a></li>
<li><a href="formhtml5.html" aria-label="Formularios en HTML5"><span>Form HTML5</span></a></li>
<li><a href="stylehtml5.html" aria-label="Estilos en HTML5"><span>Style HTML5</span></a></li>
<li><a href="#" aria-label="Página de contacto"><span>Contacto</span></a></li>
</ul>
</nav>
<main role="main">
<section>
<h2>Contenido principal</h2>
<p>Aquí iría el contenido principal de tu página web.</p>
</section>
</main>
<footer role="contentinfo">
<p>© 2023 Menú Circular HTML5. Todos los derechos reservados.</p>
</footer>
</body>
</html>