miércoles, 1 de agosto de 2018

HTML: Práctica 4


<!DOCTYPE html>
<html lang="es">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Grupo de Música - Queen</title>
<style>
/* Estilos generales */
body {
font-family: Arial, sans-serif;
background-color: #ffcc99; /* Un color más suave para el fondo */
margin: 0;
padding: 0;
color: #333;
}

h1, h2, h3 {
text-align: center;
color: #990000;
}

h1 {
font-size: 3rem;
margin-top: 20px;
}

h2 {
margin-top: 30px;
font-size: 2rem;
}

h3 {
font-size: 1.5rem;
}

p {
text-align: center;
font-size: 1.2rem;
line-height: 1.5;
margin: 10px 20px;
}

img {
display: block;
margin: 20px auto;
border: 3px solid #990000;
border-radius: 10px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

ul {
max-width: 600px;
margin: 0 auto;
padding: 0;
list-style-type: none;
}

ul li {
background-color: #ff9966;
margin: 5px 0;
padding: 10px;
text-align: center;
border-radius: 5px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

table {
margin: 20px auto;
border-collapse: collapse;
width: 80%;
background-color: #fff;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

table caption {
font-weight: bold;
margin-bottom: 10px;
}

th, td {
border: 1px solid #990000;
padding: 10px;
text-align: center;
}

th {
background-color: #ff9966;
color: #fff;
}

tfoot td {
background-color: #ffe6cc;
font-style: italic;
font-weight: bold;
}

a {
display: block;
text-align: center;
margin: 20px auto;
padding: 10px 20px;
font-size: 1.2rem;
text-decoration: none;
color: #fff;
background-color: #990000;
border-radius: 5px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

a:hover {
background-color: #cc0000;
}

hr {
border: none;
border-top: 2px solid #990000;
margin: 20px auto;
width: 80%;
}
</style>
</head>
<body>
<h1>Queen</h1>
<h3>Banda Británica de rock formada en 1970 en Londres.</h3>
<img src="queen.jpg" width="500" height="300" alt="Fotografía de los integrantes de Queen.">

<h2>Integrantes del grupo</h2>
<ul>
<li>Brian May</li>
<li>Freddie Mercury</li>
<li>John Deacon</li>
<li>Roger Taylor</li>
</ul>

<h2>Discografía</h2>
<table>
<caption>Grandes éxitos de Queen</caption>
<thead>
<tr>
<th>Año</th>
<th>Disco</th>
</tr>
</thead>
<tfoot>
<tr>
<td colspan="2">"A Kind of Magic" fue el álbum más exitoso.</td>
</tr>
</tfoot>
<tbody>
<tr>
<td>1975</td>
<td>A Night at the Opera</td>
</tr>
<tr>
<td>1986</td>
<td>A Kind of Magic</td>
</tr>
<tr>
<td>1989</td>
<td>The Miracle</td>
</tr>
</tbody>
</table>

<h2>Sitio web oficial</h2>
<a href="https://www.queenonline.com" target="_blank">Visita el sitio oficial de Queen</a>

<hr>
</body>
</html>

No hay comentarios.:

Publicar un comentario