Compare commits

...

3 Commits

Author SHA1 Message Date
59d3931f01 Cambios de Colores en CSS 2026-04-23 23:26:55 -03:00
37014186f6 Modificacion de listas 2026-04-23 23:23:27 -03:00
29deace811 Agrego gitignore 2026-04-23 23:15:54 -03:00
4 changed files with 20 additions and 4 deletions

0
.gitignore vendored Normal file
View File

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
// Use IntelliSense para saber los atributos posibles.
// Mantenga el puntero para ver las descripciones de los existentes atributos.
// Para más información, visite: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "chrome",
"request": "launch",
"name": "Iniciar Chrome para localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}"
}
]
}

View File

@@ -1,12 +1,12 @@
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #f4f6f8;
background-color: #0c5297;
color: #333;
}
header {
background-color: #2c3e50;
background-color: #869215;
color: white;
padding: 20px;
text-align: center;

View File

@@ -15,7 +15,7 @@
<div class="card">
<h2>Deportes favoritos</h2>
<ul>
<li>Fútbol</li>
<li>Básquet</li>
<li>Natación</li>
</ul>
@@ -24,7 +24,7 @@
<div class="card">
<h2>Comidas favoritas</h2>
<ul>
<li>Pizza</li>
<li>Pure</li>
<li>Asado</li>
<li>Empanadas</li>
</ul>
@@ -36,6 +36,7 @@
<li>Leer</li>
<li>Programar</li>
<li>Escuchar música</li>
<li>Cocinar</li>
</ul>
</div>
</div>