Practice - 5 Tasks
Answer the questions below
1fill in blank
easyComplete the code to make the text bold.
HTML
<p>This is [1]bold[1] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using or which make text italic, not bold.
Using which is also bold but not the simplest tag here.
✗ Incorrect
The tag makes text bold in HTML.
2fill in blank
mediumComplete the code to make the text italic.
HTML
<p>This is [1]italic[1] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using or which make text bold, not italic.
Using which is semantic italic but not the simplest tag here.
✗ Incorrect
The tag makes text italic in HTML.
3fill in blank
hardFix the error in the code to correctly show bold and italic text.
HTML
<p>This is [1]bold and italic[1] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using only one tag instead of both.
Incorrect nesting order causing display issues.
✗ Incorrect
To combine bold and italic, nest and tags properly.
4fill in blank
hardFill both blanks to make the text bold and italic.
HTML
<p>[1]bold and italic[2] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Not closing tags properly.
Using mismatched tags.
✗ Incorrect
Use opening tags and closing tags to style text bold and italic.
5fill in blank
hardFill all three blanks to make the text bold and italic using semantic tags.
HTML
<p>[1][2]bold and italic[3] text.</p>
Drag options to blanks, or click blank then click option'
Attempts:
3 left
💡 Hint
Common Mistakes
Using non-semantic tags like and instead.
Closing tags in wrong order.
✗ Incorrect
Use and tags with proper closing to make text bold and italic semantically.