1 Commits

Author SHA1 Message Date
1d6f570309 Primera modificacion y creación de gitignore 2026-04-23 22:53:25 -03:00
2 changed files with 37 additions and 37 deletions

View File

@@ -1,13 +1,13 @@
body { body {
font-family: Arial, sans-serif; font-family: Arial, sans-serif;
margin: 0; margin: 0;
background-color: #f4f6f8; background-color: #0469ce;
color: #333; color: #4117eb;
} }
header { header {
background-color: #2c3e50; background-color: #2c3e50;
color: white; color: rgb(231, 221, 22);
padding: 20px; padding: 20px;
text-align: center; text-align: center;
} }
@@ -21,7 +21,7 @@ header {
} }
.card { .card {
background-color: rgb(181, 181, 27); background-color: white;
border-radius: 10px; border-radius: 10px;
padding: 20px; padding: 20px;
width: 300px; width: 300px;

View File

@@ -1,12 +1,12 @@
<!DOCTYPE html> <!doctype html>
<html lang="es"> <html lang="es">
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0"> <meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Mis Preferencias</title> <title>Mis Preferencias</title>
<link rel="stylesheet" href="estilo.css"> <link rel="stylesheet" href="estilo.css" />
</head> </head>
<body> <body>
<header> <header>
<h1>Mis preferencias personales</h1> <h1>Mis preferencias personales</h1>
</header> </header>
@@ -16,17 +16,17 @@
<h2>Deportes favoritos</h2> <h2>Deportes favoritos</h2>
<ul> <ul>
<li>Fútbol</li> <li>Fútbol</li>
<li>Natación</li> <li>Básquet</li>
<li>Tenis</li>
</ul> </ul>
</div> </div>
<div class="card"> <div class="card">
<h2>Comidas favoritas</h2> <h2>Comidas favoritas</h2>
<ul> <ul>
<li>Pizza</li> <li>Milanesa</li>
<li>Asado</li> <li>Asado</li>
<li>Empanadas</li> <li>Pollo</li>
<li>Fideos</li>
</ul> </ul>
</div> </div>
@@ -34,10 +34,10 @@
<h2>Pasatiempos favoritos</h2> <h2>Pasatiempos favoritos</h2>
<ul> <ul>
<li>Leer</li> <li>Leer</li>
<li>Programar</li> <li>Practicar deportes</li>
<li>Ver películas</li> <li>Escuchar música</li>
</ul> </ul>
</div> </div>
</div> </div>
</body> </body>
</html> </html>