Skip to content

Commit 5f9ca17

Browse files
committed
Updates
1 parent a7227b0 commit 5f9ca17

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

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

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)