File tree Expand file tree Collapse file tree 1 file changed +9
-5
lines changed
exercises/01.1-The-Style-Tag Expand file tree Collapse file tree 1 file changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -16,14 +16,18 @@ You can have as many style tags as you want but it is recomended to have only on
1616
1717## 📝 Instructions
1818
19- - Add a ` <style> ` tag into your website
20- - Using CSS properties select all ` <p> ` tags to turn their text color to blue.
21- - Make tthe font size 36px .
22- - Give the p tag padding of 40px .
19+ 1 . Add a ` <style> ` tag into your website
20+ 2 . Using CSS properties select all ` <p> ` tags to turn their text color to blue.
21+ 3 . Make the font (text) twice its original size - use the ` em ` units .
22+ 4 . Give the ` p ` tag padding of ` 2rem ` .
2323
2424### 💡 Hint
2525
26- Remember that you will need the complete html structure of the page, because the ` style ` tags need to go inside of the ` head ` tags.
26+ - Remember that you will need the complete html structure of the page, because the ` style ` tags need to go inside of the ` head ` tags.
27+
28+ - You can learn more about the different measurement units in CSS here:
29+ https://www.w3schools.com/cssref/css_units.asp
30+
2731
2832## 💻 Preview
2933
You can’t perform that action at this time.
0 commit comments