fix(curriculum): Improving rpg 17 with example markup (#54096)

Co-authored-by: Supravisor <153783117+Supravisor@users.noreply.github.com>
Co-authored-by: Jessica Wilkins <67210629+jdwilkin4@users.noreply.github.com>
This commit is contained in:
Jun Xiang
2024-03-15 03:15:22 +08:00
committed by GitHub
parent 11910d5250
commit 9fe3efe55c

View File

@@ -9,6 +9,12 @@ dashedName: step-17
Wrap the numbers `0`, `100`, and `50` in `span` elements, and wrap those new `span` elements in `strong` elements. Then give your new `span` elements `id` values of `xpText`, `healthText`, and `goldText`, respectively.
Your answer should follow this basic structure:
```html
<span class="stat">TEXT <strong><span id="VALUE">TEXT</span></strong></span>
```
# --hints--
You should add a `strong` element in your first `.stat` element.