Skip to content

Commit b303265

Browse files
Merge pull request 4GeeksAcademy#88 from josemoracard/jose3-01-hello-world
fixed text in 01-hello-world
2 parents e34ab81 + a5fc441 commit b303265

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

exercises/01-Hello-World/README.es.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=rbtHLA813pU"
66

77
CSS trata sobre estilos (styles). Para aplicar estilos, siempre debes seguir estos pasos:
88

9-
1. Lee el HTML y elije qué elemento deseas decorar o aplicar estilos.
9+
1. Lee el HTML y elige qué elemento deseas decorar o aplicarle estilos.
1010

1111
2. Programáticamente selecciona el elemento que deseas decorar con los selectores de CSS.
1212

@@ -26,7 +26,7 @@ Mira este ejemplo:
2626
```
2727

2828
Tenemos un enlace de HTML `<a>` que lleva a las personas a google.com cuando se hace clic.
29-
Usamos CSS para selectionar todas las etiquetas `<a>` y luego hacerlas `pink`.
29+
Usamos CSS para seleccionar todas las etiquetas `<a>` y luego hacerlas `pink`.
3030

3131
## 📝 Instrucciones
3232

@@ -36,4 +36,4 @@ Usamos CSS para selectionar todas las etiquetas `<a>` y luego hacerlas `pink`.
3636

3737
Debería verse así:
3838

39-
![01 Hello World Exercise Preview](../../.learn/assets/01-1.png?raw=true)
39+
![01 Hello World Exercise Preview](../../.learn/assets/01-1.png?raw=true)

exercises/01-Hello-World/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@ tutorial: "https://www.youtube.com/watch?v=rbtHLA813pU"
33
---
44
# `01` Hello World in CSS
55

6-
CSS is about styles. To apply styles you always have to follow this steps:
6+
CSS is about styles. To apply styles you always have to follow these steps:
77

8-
1. Read the HTML and pick what element do you want to decorate or apply styles to.
8+
1. Read the HTML and pick what element you want to decorate or apply styles to.
99

10-
2. Programatically select the element you want to style using CSS Selectors.
10+
2. Programmatically select the element you want to style using CSS Selectors.
1111

1212
3. Write the styling that you want by using CSS rules.
1313

@@ -25,7 +25,7 @@ Look at this example:
2525
```
2626

2727
We have an HTML anchor `<a>` that takes people to google.com when clicked.
28-
We use CSS to tell (selected) all the anchor tags and make then pink.
28+
We use CSS to select all the anchor tags and make them pink.
2929

3030
## 📝 Instructions:
3131

exercises/01-Hello-World/test.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ test("There should be a target attribute pointing to '_blank'", ()=>{
2828
expect(target).toBe("_blank");
2929
})
3030

31-
test("The anchor tag should not contains any inline style", ()=>{
31+
test("The anchor tag should not contain any inline style", ()=>{
3232
let emptyBodyInlineStyle = {};
3333
expect(a.style._values).toEqual(emptyBodyInlineStyle);
34-
});
34+
});

0 commit comments

Comments
 (0)