Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions exercises/01.1-The-Style-Tag/README.es.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,15 @@
# `01.1` Etiqueta Style

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

```HTML
<style>
/* los estilos CSS del sitio web van aquí */
/* Los estilos CSS del sitio web van aquí */
</style>
```

## 📝 Instruccciones:
## 📝 Instrucciones:

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`).

Expand Down
8 changes: 4 additions & 4 deletions exercises/01.1-The-Style-Tag/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,18 +4,18 @@ tutorial: "https://www.youtube.com/watch?v=C5sOchuD2d4"

# `01.1` The Style Tag

If you want to add styles into a website by writing CSS you have to always add it within a `<style>` tag.
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.
If you want to add styles into a website by writing CSS you always have to add it within a `<style>` tag.
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.

```HTML
<style>
/* the website CSS Styles go here */
/* The website CSS Styles go here */
</style>
```

## 📝 Instructions

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

## 💻 Preview

Expand Down
8 changes: 4 additions & 4 deletions exercises/01.1-The-Style-Tag/solution.hide.html
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<!-- add a style tag and select the p tag and make it color blue -->
<!-- Add a style tag, then select the p tag and make it color blue -->
<style>
/* the website CSS Styles go here */
/* The website CSS Styles go here */
p {
color: blue;
}
</style>
<p>
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
around them. Having children learn coding at a young age prepares them for the future. Coding helps children with communication, creativity,
math,writing, and confidence.
</p>
math, writing, and confidence.
</p>