Skip to content
Merged
Changes from 1 commit
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
Next Next commit
Update README.md
  • Loading branch information
josemoracard authored Mar 22, 2023
commit 67efebeb096465f3c9ba4fd0383af51d172d7511
4 changes: 2 additions & 2 deletions exercises/02-Separate-Stylesheet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ tutorial: "https://www.youtube.com/watch?v=T0anCc5fvSg"

If you use the html `<link>` 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.

## 💡Hint:
## 💡 Hint:

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