Skip to content

Commit 8e7e6cc

Browse files
authored
Update README.md
1 parent 27c870b commit 8e7e6cc

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exercises/01.1-The-Style-Tag/README.md

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

55
# `01.1` The Style Tag
66

7-
If you want to add styles into a website by writing CSS you have to always add it within a `<style>` tag.
8-
You can have as many style tags as you want but it is recomended to have only one at the beginning of your website code.
7+
If you want to add styles into a website by writing CSS you always have to add it within a `<style>` tag.
8+
You can have as many style tags as you want, but it is recommended to have only one at the beginning of your website code.
99

1010
```HTML
1111
<style>
12-
/* the website CSS Styles go here */
12+
/* The website CSS Styles go here */
1313
</style>
1414
```
1515

1616
## 📝 Instructions
1717

18-
1. Add a `<style>` tag into your website and using CSS select all `<p>` tags to turn their text into `blue` color.
18+
1. Add a `<style>` tag to your website and using CSS select all `<p>` tags to turn their text to color `blue`.
1919

2020
## 💻 Preview
2121

0 commit comments

Comments
 (0)