forked from marquez.juan/ejercicio-forks-ramas-pr
Compare commits
1 Commits
estudiante
...
rama-nueva
| Author | SHA1 | Date | |
|---|---|---|---|
| 1d6f570309 |
19
.gitignore
vendored
Normal file
19
.gitignore
vendored
Normal file
@@ -0,0 +1,19 @@
|
|||||||
|
# Python
|
||||||
|
__pycache__/
|
||||||
|
*.pyc
|
||||||
|
*.pyo
|
||||||
|
|
||||||
|
# Entorno virtual de Python
|
||||||
|
venv/
|
||||||
|
.venv/
|
||||||
|
env/
|
||||||
|
|
||||||
|
# Variables de entorno y configuración sensible
|
||||||
|
.env
|
||||||
|
|
||||||
|
# Sistemas operativos
|
||||||
|
.DS_Store # macOS
|
||||||
|
Thumbs.db # Windows
|
||||||
|
|
||||||
|
# Node.js (por si se utiliza npm en algún momento)
|
||||||
|
node_modules/
|
||||||
@@ -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;
|
||||||
}
|
}
|
||||||
|
|||||||
16
index.html
16
index.html
@@ -1,10 +1,10 @@
|
|||||||
<!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>
|
||||||
@@ -17,16 +17,16 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li>Fútbol</li>
|
<li>Fútbol</li>
|
||||||
<li>Básquet</li>
|
<li>Básquet</li>
|
||||||
<li>Natación</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>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -34,7 +34,7 @@
|
|||||||
<h2>Pasatiempos favoritos</h2>
|
<h2>Pasatiempos favoritos</h2>
|
||||||
<ul>
|
<ul>
|
||||||
<li>Leer</li>
|
<li>Leer</li>
|
||||||
<li>Programar</li>
|
<li>Practicar deportes</li>
|
||||||
<li>Escuchar música</li>
|
<li>Escuchar música</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user