Código HTML:
Ver original
<!DOCTYPE html> <html lang="es"> <head> <meta charset ="UTF-8" /> <meta name="description" content="Black & Death Metal por un tubo" /> <meta name="keywords" content="black metal, death metal, thrash metal, brutal death metal" /> <title>Black & Death Metal por un tubo - un placer para tus oidos</title> <link rel="stylesheet" href="estilos.css"> </head> <body> <div id="cuerpo"> <header id="cabecera"> <h1 class="titulo1">Black & Death Metal por un tubo</h1> <h2 class="titulo2">Un placer para tus oidos</h2> </header> <nav id="menu"> <ul> <li>principal</li> <li>fotos</li> <li>conciertos</li> <li>contacto</li> </ul> </nav> <section id="contenido"> <article id="articulos"> <p id="parrafos">ejemplo ejemplo ejemplo ejemplo</p> </article> </section> <footer id="pie"> <p>Derechos Reservados</p> </footer> </div> </body> </html>
Código CSS:
Ver original
* { margin: 0px; padding: 0px; } #cabecera { background-color: #000000; } h1,h2 { font: bold 20px; color: #FFFFCC; font-family verdana, sans-serif; text-align:center; } header, section, footer, nav, article, { display: block; } body { text-align: center; }