forked from marquez.juan/ejercicio-forks-ramas-pr
Compare commits
3 Commits
main
...
a45a8fae19
| Author | SHA1 | Date | |
|---|---|---|---|
| a45a8fae19 | |||
| 36445d0259 | |||
| b6f5a19355 |
14
.gitignore
vendored
Normal file
14
.gitignore
vendored
Normal file
@@ -0,0 +1,14 @@
|
||||
__pycache__/
|
||||
*.pyc
|
||||
*.pyo
|
||||
|
||||
venv/
|
||||
.venv/
|
||||
env/
|
||||
|
||||
.env
|
||||
|
||||
.DS_Store # macOS
|
||||
Thumbs.db # Windows
|
||||
|
||||
node_modules/
|
||||
@@ -6,8 +6,8 @@ body {
|
||||
}
|
||||
|
||||
header {
|
||||
background-color: #2c3e50;
|
||||
color: white;
|
||||
background-color: #b40606;
|
||||
color: rgb(0, 0, 0);
|
||||
padding: 20px;
|
||||
text-align: center;
|
||||
}
|
||||
@@ -30,7 +30,7 @@ header {
|
||||
|
||||
h2 {
|
||||
margin-top: 0;
|
||||
color: #2c3e50;
|
||||
color: #b40606;
|
||||
}
|
||||
|
||||
ul {
|
||||
|
||||
10
index.html
10
index.html
@@ -13,29 +13,29 @@
|
||||
|
||||
<div class="container">
|
||||
<div class="card">
|
||||
<h2>Deportes favoritos</h2>
|
||||
<h2>Deportes favoritos</h2><!--en esta se borro un item -->
|
||||
<ul>
|
||||
<li>Fútbol</li>
|
||||
<li>Básquet</li>
|
||||
<li>Natación</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h2>Comidas favoritas</h2>
|
||||
<h2>Comidas favoritas</h2><!--en esta se cambio un item -->
|
||||
<ul>
|
||||
<li>Pizza</li>
|
||||
<li>Milanesas con pure</li>
|
||||
<li>Asado</li>
|
||||
<li>Empanadas</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="card">
|
||||
<h2>Pasatiempos favoritos</h2>
|
||||
<h2>Pasatiempos favoritos</h2><!--en esta se agrego un item -->
|
||||
<ul>
|
||||
<li>Leer</li>
|
||||
<li>Programar</li>
|
||||
<li>Escuchar música</li>
|
||||
<li>Dibujar</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user