HTML5
<DOCTYPE! html> <head> <title>Página con estilo</title> <style type="text/css"> body { padding-left: 11em; font-family: Georgia, "Times New Roman", Times, serif; color: grey; background-color: black } ul.navbar { position: absolute; top: 2em; left: 0.5em; width: 9em } h1 { font-family: Helvetica, Geneva, Arial, SunSans-Regular, sans-serif } a{ color:white; } </style> </head> <body> <!-- Menú de navegación del sitio --> <ul class="navbar"> <li><a href="indice.html">Página principal</a> <li><a href="enlaces.html">Recomendaciones</a> <li><a href="enlaces1.html">Mas buscados</a> <li><a href="enlaces2.html">Tus Favoritos</a> <li><a href="enlaces3.html">Trending</a> </ul> ...