Estructura básica de un documento de HTML5

<!DOCTYPE html> <html lang="es"> <head> <title>Titulo_de_mi_web</title> <meta charset="utf-8" /> </head> <body> <header> <h1>Mi sitio web</h1> <p>Mi sitio web creado en html5</p> </header> <section> <article> <h2>Titilo de contenido<h2> <p> Contenido (ademas de imagenes, citas, videos etc. </p> </article> </section> <aside> <h3>Titulo de contenido</h3> <p>contenido</p> </aside> <footer> Creado por minombre.com </footer> </body> </html>
Estructura de HTML5 APRENDIENDO PASO A PASO

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.