Introducción a XHTML

15.8. Ejercicio 8

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="es" xml:lang="es">

<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Lista simple anidada</title>
</head>

<body>

<h1>Menú</h1>

<ul>
  <li>Inicio</li>
  <li>
    <strong>Noticias</strong>
    <ul>
      <li><a href="#" title="Ver las noticias más recientes">Recientes</a></li>
      <li><strong><a href="#" title="Ver las noticias más leídas">Más leídas</a></strong></li>
      <li><a href="#" title="Ver las noticias más valoradas">Más valoradas</a></li>
    </ul>
  </li>
</ul>

</body>

</html>

Descargar solución completa