Skip to content

Commit 51b09f8

Browse files
committed
spelling errors have been corrected
1 parent 05f6825 commit 51b09f8

File tree

8 files changed

+11
-11
lines changed

8 files changed

+11
-11
lines changed

exercises/01-welcome/README.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ He preparado estos ejercicios para cualquier persona interesada en aprender HTML
1919

2020
- He desarrollado los ejercicios de forma incremental, así sentirás como vas aprendiendo poco a poco cosas nuevas.
2121

22-
- ¡No te frustres! Preguntanos por Slack en el canal #public_support o en privado siguiendo [estos pasos](https://content.breatheco.de/es/how-to/ask)
22+
- ¡No te frustres! Pregúntanos por Slack en el canal #public_support o en privado siguiendo [estos pasos](https://content.breatheco.de/es/how-to/ask)
2323

2424
**Estás aquí para aprender desde 0 y todo 4Geeks Academy está aquí para ayudarte.**
2525

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# `01.1` Hello World
22

3-
HTML es un languaje de etiquetas,lo que significa que todo lo que se escribe debe estar encerrado en etiquetas de apertura y cierre como esta:
3+
HTML es un languaje de markup, lo que significa que todo lo que se escribe debe estar encerrado en `<tags>` (etiquetas) de apertura y cierre como esta:
44

55
```html
66
<span>Hola, Yo soy un texto</span>
@@ -9,12 +9,12 @@ HTML es un languaje de etiquetas,lo que significa que todo lo que se escribe deb
99

1010
## 📝 Instrucciones:
1111

12-
1. `Elimina` todo el cotenido actual de la página y `agrega` estás etiquetas en el HTML de tu sitio web y presiona "build" para ver los resultados.
12+
1. `Elimina` todo el cotenido actual de la página y `agrega` estas etiquetas en el HTML de tu sitio web y presiona "build" para ver los resultados.
1313

1414
![Build](../../.learn/assets/build.png?raw=true)
1515

1616
# 💻 Vista previa
1717

18-
El resultado debería verse de la siguiente manera:
18+
Su sitio web final debería ser algo como esto:
1919

2020
![Preview for 01.1 HTML Exercises](../../.learn/assets/preview-01.1.png?raw=true)

exercises/01.1-Hello-World/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ tutorial: "https://www.youtube.com/watch?v=s0WhMNU8qZ0"
44

55
# `01.1` Hello World
66

7-
HTML is a markup language, meaning that everything you type must be wraped in opening and closing tags like this:
7+
HTML is a markup language, meaning that everything you type must be wraped in opening and closing `<tags>` like this:
88

99
```html
1010
<span>Hello, I am a text</span>
@@ -13,7 +13,7 @@ HTML is a markup language, meaning that everything you type must be wraped in op
1313

1414
## 📝 Instructions:
1515

16-
1. Please `remove` the current website content and `add` this two tags to your website HTML and build your website to see the results.
16+
1. Please `remove` the current website content and `add` this two tags to your website HTML and press "build" to see the results.
1717

1818
![Build](../../.learn/assets/build.png?raw=true)
1919

exercises/03-hello-without-head/README.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ En el último ejercicio tuviste que agregar toda la estructura básica HTML de u
66

77
Haz lo mismo en este ejercicio, pero no incluyas la etiqueta HEAD.
88

9-
1. Agrega al `<body>` un titulo `H1` con tu nombre.
9+
1. Agrega al `<body>` un título `H1` con tu nombre.
1010

1111
## Resultado esperado:
1212

exercises/05-create-anchors/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tutorial: "https://www.youtube.com/watch?v=hVatMB5GaWA"
88

99
1. Add to the website body an anchor tag that says `Click me to search on google`
1010

11-
The anchor should takes the user to the url [http://google.com](http://google.com) when clicked.
11+
The anchor should take the user to the url [http://google.com](http://google.com) when clicked.
1212

1313
## 💡 Hint:
1414

exercises/06-anchor-in-new-window/README.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ En el index.html de este ejercicio hay un anchor (link) que te lleva a google.co
77
<a href="http://google.com">Click me to search on google </a>
88
```
99

10-
¿Qué propiedad deberiamos agregar a este link si quisiéramos que se abriera en una pestaña nueva en lugar de redirigir al usuario?
10+
¿Qué propiedad deberíamos agregar a este link si quisiéramos que se abriera en una pestaña nueva en lugar de redirigir al usuario?
1111

1212
## 📝 Instrucciones:
1313

exercises/13-image-with-text/README.es.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Antes de que existiera CSS, el uso de tablas era la única forma posible de hace
44

55
Por ejemplo, para recrear este ejemplo, debes hacer lo siguiente:
66

7-
1. Cree una tabla con el atributo `border = "0"`
7+
1. Crea una tabla con el atributo `border = "0"`
88

99
2. Agrega la fila (`tr`) con 2 columnas (`td`) dentro.
1010

exercises/14-video-tag/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ P.D. it wouldn't hurt to watch the video!
2121

2222
## 💡 Hint:
2323

24-
+ Chrome requires the use of attribute: autoplay muted like this:
24+
+ Chrome requires the use of the attribute: autoplay muted like this:
2525

2626
```html
2727
<video muted autoplay>

0 commit comments

Comments
 (0)