Skip to content

Commit 6f278ed

Browse files
authored
Merge pull request 4GeeksAcademy#92 from josemoracard/jose7-02-separate-stylesheet
fixed text 02-separate-stylesheet
2 parents e8aaf6b + 41203e2 commit 6f278ed

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

exercises/02-Separate-Stylesheet/README.es.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Esa es una mejor práctica porque te permite tener un sitio web sin diseño, pue
66

77
## 📝 Instrucciones:
88

9-
LLena el `styles.css` con el contenido necesario para que el body del sitio web sea azul (blue).
9+
Llena el `styles.css` con el contenido necesario para que el `body` del sitio web sea azul (blue).
1010

1111
## 💡 Pista:
1212

13-
+ Busca en Google cómo cambiar el color de fondo (`background-color`) de un body de un sitio web.
13+
+ Busca en Google cómo cambiar el color de fondo (`background-color`) del `body` de un sitio web.
1414

15-
15+

exercises/02-Separate-Stylesheet/README.md

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

77
If you use the html `<link>` tag, you can also have your styles on a separate file that we usually call `styles.css`.
88

9-
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.
9+
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.
1010

1111
## 📝 Instructions:
1212

13-
Fill the `styles.css` with the content needed to make the website body blue.
13+
Fill the `styles.css` with the content needed to make the website's `body` blue.
1414

15-
## 💡Hint:
15+
## 💡 Hint:
1616

17-
+ Google how to change the `background-color` of a website body.
17+
+ Google how to change the `background-color` of a website's `body`.

exercises/02-Separate-Stylesheet/tests.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ describe("All the styles should be applied", ()=>{
1010
const link = document.querySelector("link");
1111
const body = document.querySelector("body");
1212

13-
test("The body tag should not contains any inline style", ()=>{
13+
test("The body tag should not contain any inline style", ()=>{
1414
document.querySelector("head").innerHTML = `<style>${css.toString()}</style>`;
1515
let emptyBodyInlineStyle={};
1616
expect(body.style._values).toEqual(emptyBodyInlineStyle)

0 commit comments

Comments
 (0)