Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to emphasize the word with the correct tag.
HTML
<p>This is an [1] example.</p> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using instead of for emphasis.
Confusing with .
✗ Incorrect
The tag is used to emphasize text, which is important for meaning and accessibility.
2fill in blank
mediumComplete the code to italicize the word without adding emphasis.
HTML
<p>This word is styled as [1].</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using when only italic style is needed.
Confusing with .
✗ Incorrect
The tag italicizes text for styling without implying emphasis.
3fill in blank
hardFix the error by choosing the correct tag for emphasis in this sentence.
HTML
<p>This is an [1] example.</p> Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using or tags for emphasis instead of .
Confusing with .
✗ Incorrect
The tag correctly marks text as emphasized, which is important for screen readers.
4fill in blank
hardFill both blanks to create emphasized and italic text respectively.
HTML
<p>This is [1] and this is [2] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Swapping the tags and confusing emphasis with style.
Using or instead of or .
✗ Incorrect
The first blank uses for emphasis, the second uses for italic style without emphasis.
5fill in blank
hardFill all four blanks to emphasize and strongly emphasize text.
HTML
<p>[1]This[2] is [3]important[4] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Forgetting to close the tag.
Using instead of or for emphasis.
✗ Incorrect
The code uses and to emphasize 'This', and and to strongly emphasize 'important'.