Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
48 changes: 23 additions & 25 deletions 2_HTML5/menu.html
Original file line number Diff line number Diff line change
@@ -1,29 +1,27 @@
<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="ISO-8859-1" />
<title>Empezando con html5</title>
<link rel="stylesheet" type="text/css" href="botones.css" />
<!-- Las etiquetas <meta> proveen a los motores de busqueda -->

<!-- la informaci�n que se usa para catalogar un sitio -->
<meta name = "keywords" content = "web page, design,
HTML5, tutorial, personal, help, index, form,
contact, basic HTML5 feedback, list, links, lol, yolo">
<meta name = "description" content = "This website will
help you learn the basics of HTML5 and web page design
through the use of interactive examples and
instruction.">
</head>
<body>
<header> <h1>Creando men� circular para clase</h1>
</header>
<nav>
<ul class="circulos">
<li><a href="basicohtml5.html"><span>B�sico HTML5</span></a></li>
<li><a href="formhtml5.html"><span>Form HTML5</span></a></li>
<li><a href="stylehtml5.html"><span>Style HTML5</span></a></li>
<li><a href="#"><span>Contacto</span></a></li>
</ul>
</nav>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Empezando con HTML5</title>
<link rel="stylesheet" type="text/css" href="botones.css" />
<!-- Las etiquetas <meta> proveen a los motores de búsqueda la información para catalogar un sitio -->
<meta name="keywords" content="web page, design, HTML5, tutorial, personal, help, index, form, contact, basic HTML5 feedback, list, links, lol, yolo">
<meta name="description" content="Este sitio web te ayudará a aprender lo básico de HTML5 y diseño web mediante ejemplos interactivos e instrucciones.">
</head>
<body>
<header>
<h1>Creando menú circular para clase</h1>
</header>
<main>
<nav aria-label="Menú principal">
<ul class="circulos">
<li><a href="basicohtml5.html"><span>Básico HTML5</span></a></li>
<li><a href="formhtml5.html"><span>Formulario HTML5</span></a></li>
<li><a href="stylehtml5.html"><span>Estilos HTML5</span></a></li>
<li><a href="#" aria-label="Contacto (no disponible)"><span>Contacto</span></a></li>
</ul>
</nav>
</main>
</body>
</html>