PATRÓN DE PAGINA WEB SOLAMENTE CON HTML
html <!DOCTYPE html> <html> <head> <title>Página con 3 Menús (Solo HTML)</title> </head> <body> <!-- MENÚ 1: BARRA SUPERIOR (Usando una tabla para alinear) --> <table width="100%" bgcolor="#D3D3D3" border="0"> <tr> <td> <b>Navegación Principal:</b> <a href="#inicio">Inicio</a> | <a href="#servicios">Servicios</a> | <a href="#nosotros">Nosotros</a> | <a href="#contacto">Contacto</a> </td> ...