diff --git a/exercises/01.2-Your-First-Style/README.es.md b/exercises/01.2-Your-First-Style/README.es.md index 1b8ce317..4d6f37bd 100644 --- a/exercises/01.2-Your-First-Style/README.es.md +++ b/exercises/01.2-Your-First-Style/README.es.md @@ -1,6 +1,6 @@ # `01.2` Tu Primer Estilo -Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle. +Cuando usas CSS, la idea es aplicar `reglas css` a tus `elementos html`, siempre debes seleccionar primero el elemento y luego especificar qué reglas deseas aplicarle: Por ejemplo, este es el código si quiero que todos los `anchors` de mi sitio web (etiquetas ``) sean azules (`blue`): diff --git a/exercises/01.2-Your-First-Style/README.md b/exercises/01.2-Your-First-Style/README.md index f66e2d25..d6a9b3fc 100644 --- a/exercises/01.2-Your-First-Style/README.md +++ b/exercises/01.2-Your-First-Style/README.md @@ -6,7 +6,7 @@ tutorial: "https://www.youtube.com/watch?v=8b12AFC6bWs" When doing CSS, the idea is to apply `css rules` to your `html elements`, you always have to select the element first, and then specify what rules you want to apply to it: -For example, this is the code if you want to make all my website anchors (` tag's`) blue: +For example, this is the code if you want to make all your website anchors (`` tags) blue: ```css a { @@ -16,6 +16,6 @@ a { ## 📝 Instructions: -1. Right now there is a style being applied that is responsable of making the anchor `red`. +1. Right now there is a style being applied that is responsible for making the anchor `red`. 2. Change the style to make your anchor look `yellow`.