Ver Mensaje Individual
  #10 (permalink)  
Antiguo 06/10/2011, 15:50
Avatar de ArturoGallegos
ArturoGallegos
Moderador
 
Fecha de Ingreso: febrero-2008
Ubicación: Morelia, México
Mensajes: 6.774
Antigüedad: 16 años, 2 meses
Puntos: 1146
Respuesta: menú fijo superior

la estructura básica de un documento html 4 (que es el caso del código que muestras)
Código HTML:
Ver original
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  2. <html lang="es-MX">
  3.     <title>Sin título 1</title>
  4. </head>
  5.  
  6.  
  7. </body>
  8. </html>
con solo verlo considero que notaras que le falta a tu código...
aunque para serte franco si estas aprendiendo te recomendaría utilices xhtml , que es mas reciente que el html 4 y te ahorraras unos cuantos dolores de cabeza

Código HTML:
Ver original
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es-MX" lang="es-MX">
  3.     <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  4.     <meta name="keywords" content="" />
  5.     <title>Sin título 1</title>
  6. </head>
  7.  
  8.  
  9. </body>
  10. </html>