ESQUEMA TIPO ARBOL DOCUMENTO HTML

Documento HTML

01 <!doctype html>
02 <html>
03       <head>
04           <meta charset="utf-8">
05           <title> Ejercicio opcional árbol </title>
06       </head>
07    <body>
08    <header>
09         <img src="firefox-os.png" alt="FirefoxOS Logo" width="200" heidht="164">
10    </header>
11    <nav>
12        <ul>
13            <li>Menu 1</li>
14            <li>Menu 2</li>
15            <li>Menu 3</li>
16        </ul>
16    </nav>
17    <article>
18            <h1> Titular de nivel1</h1>
19            <p>Contenido de la página</p>
20    </article>
21    <footer>Pie de página</footer>
22    </body>
23 </html>