<ul>
<li>Hardware</li>
<ol>
<li>Procesador</li>
<li>Placa Base</li>
<li>RAM</li>
</ol>
<li>Software</li>
<li>Programacion</li>
</ul>
Los errores que me dice son 4...
- Line 12, Column 5: document type does not allow element "ol" here; assuming missing "li" start-tag
<ol>
- Line 17, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
<li>Software</li>
- Error Line 18, Column 4: document type does not allow element "li" here; missing one of "ul", "ol", "menu", "dir" start-tag
<li>Programacion</li>
- Error Line 19, Column 5: end tag for "li" omitted, but OMITTAG NO was specified
</ul>
y una especie de advertencia...
- Line 12, Column 1: start tag was here
______<ol>
El codigo completo es esto...
Código html:
Ver original
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "no_me_deja_poner_enlaces.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="no_me_deja_poner_enlaces.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> </head> <body> Lista ordenada combinada con lista numerada <ul> <ol> </ol> </ul> </body> </html>