Skip to content

Commit f976783

Browse files
Merge pull request 4GeeksAcademy#89 from josemoracard/jose4-01.1-the-style-tag
fixed text in 01.1-the-style-tag
2 parents b303265 + 6b3dac2 commit f976783

File tree

3 files changed

+11
-11
lines changed

3 files changed

+11
-11
lines changed

exercises/01.1-The-Style-Tag/README.es.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22
# `01.1` Etiqueta Style
33

44
Si quieres añadir estilos a tu sitio web escribiendo CSS siempre debes hacerlo dentro de una etiqueta `<style>`.
5-
Puedes tener cuantas etiquetas `<style>`quieras pero se recomienda solo tener una al principio del código de tu sitio web.
5+
Puedes tener cuantas etiquetas `<style>` quieras, pero se recomienda solo tener una al principio del código de tu sitio web.
66

77
```HTML
88
<style>
9-
/* los estilos CSS del sitio web van aquí */
9+
/* Los estilos CSS del sitio web van aquí */
1010
</style>
1111
```
1212

13-
## 📝 Instruccciones:
13+
## 📝 Instrucciones:
1414

1515
1. Añade una etiqueta `<style>` en tu sitio web y usando CSS selecciona todas las etiquetas `<p>` para que su texto sea de color azul (`blue`).
1616

exercises/01.1-The-Style-Tag/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,18 @@ tutorial: "https://www.youtube.com/watch?v=C5sOchuD2d4"
44

55
# `01.1` The Style Tag
66

7-
If you want to add styles into a website by writing CSS you have to always add it within a `<style>` tag.
8-
You can have as many style tags as you want but it is recomended to have only one at the beginning of your website code.
7+
If you want to add styles into a website by writing CSS you always have to add it within a `<style>` tag.
8+
You can have as many style tags as you want, but it is recommended to have only one at the beginning of your website code.
99

1010
```HTML
1111
<style>
12-
/* the website CSS Styles go here */
12+
/* The website CSS Styles go here */
1313
</style>
1414
```
1515

1616
## 📝 Instructions
1717

18-
1. Add a `<style>` tag into your website and using CSS select all `<p>` tags to turn their text into `blue` color.
18+
1. Add a `<style>` tag to your website and using CSS select all `<p>` tags to turn their text to color `blue`.
1919

2020
## 💻 Preview
2121

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<!-- add a style tag and select the p tag and make it color blue -->
1+
<!-- Add a style tag, then select the p tag and make it color blue -->
22
<style>
3-
/* the website CSS Styles go here */
3+
/* The website CSS Styles go here */
44
p {
55
color: blue;
66
}
77
</style>
88
<p>
99
Coding is a basic literacy in the digital age, and it is important for kids to understand and be able to work with and understand the technology
1010
around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity,
11-
math,writing, and confidence.
12-
</p>
11+
math, writing, and confidence.
12+
</p>

0 commit comments

Comments
 (0)