diff --git a/exercises/02-Separate-Stylesheet/README.es.md b/exercises/02-Separate-Stylesheet/README.es.md index 58eca7ef..2b922968 100644 --- a/exercises/02-Separate-Stylesheet/README.es.md +++ b/exercises/02-Separate-Stylesheet/README.es.md @@ -6,10 +6,10 @@ Esa es una mejor práctica porque te permite tener un sitio web sin diseño, pue ## 📝 Instrucciones: -LLena el `styles.css` con el contenido necesario para que el body del sitio web sea azul (blue). +Llena el `styles.css` con el contenido necesario para que el `body` del sitio web sea azul (blue). ## 💡 Pista: -+ Busca en Google cómo cambiar el color de fondo (`background-color`) de un body de un sitio web. ++ Busca en Google cómo cambiar el color de fondo (`background-color`) del `body` de un sitio web. - \ No newline at end of file + diff --git a/exercises/02-Separate-Stylesheet/README.md b/exercises/02-Separate-Stylesheet/README.md index acaa2282..7c4637c1 100644 --- a/exercises/02-Separate-Stylesheet/README.md +++ b/exercises/02-Separate-Stylesheet/README.md @@ -6,12 +6,12 @@ tutorial: "https://www.youtube.com/watch?v=T0anCc5fvSg" If you use the html `` tag, you can also have your styles on a separate file that we usually call `styles.css`. -That is an even better practice because it lets you have an CSS agnostic website, you can change the CSS later and make the website look 100% different, but still have the same exact HTML. +That is an even better practice because it lets you have a CSS agnostic website, you can change the CSS later and make the website look 100% different, but still have the same exact HTML. ## 📝 Instructions: -Fill the `styles.css` with the content needed to make the website body blue. +Fill the `styles.css` with the content needed to make the website's `body` blue. -## 💡Hint: +## 💡 Hint: -+ Google how to change the `background-color` of a website body. ++ Google how to change the `background-color` of a website's `body`. diff --git a/exercises/02-Separate-Stylesheet/tests.js b/exercises/02-Separate-Stylesheet/tests.js index f36df975..e3f44fc4 100644 --- a/exercises/02-Separate-Stylesheet/tests.js +++ b/exercises/02-Separate-Stylesheet/tests.js @@ -10,7 +10,7 @@ describe("All the styles should be applied", ()=>{ const link = document.querySelector("link"); const body = document.querySelector("body"); - test("The body tag should not contains any inline style", ()=>{ + test("The body tag should not contain any inline style", ()=>{ document.querySelector("head").innerHTML = ``; let emptyBodyInlineStyle={}; expect(body.style._values).toEqual(emptyBodyInlineStyle)