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 bf2f4e35ef9ab81d7af83401f095e1962f77daed
4 changes: 2 additions & 2 deletions exercises/01.2-Your-First-Style/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 (`<a> tag's`) blue:
For example, this is the code if you want to make all your website anchors (`<a>` tags) blue:

```css
a {
Expand All @@ -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`.