File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
exercises/01.1-The-Style-Tag Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments