Recall & Review
beginner
What HTML tag is used to make text bold?
The
<strong> tag is used to make text bold and also indicates strong importance.Click to reveal answer
beginner
Which HTML tag is used to make text italic?
The
<em> tag is used to make text italic and also indicates emphasis.Click to reveal answer
intermediate
What is the difference between
<b> and <strong> tags?<b> makes text bold without extra meaning, while <strong> makes text bold and signals strong importance to screen readers.Click to reveal answer
beginner
How do you combine bold and italic styles in HTML?
You can nest tags like
<strong><em>Text</em></strong> to make text both bold and italic.Click to reveal answer
intermediate
Why should you prefer
<em> and <strong> over <i> and <b>?Because
<em> and <strong> add meaning (emphasis and importance) which helps screen readers and improves accessibility.Click to reveal answer
Which tag should you use to make text bold and indicate strong importance?
✗ Incorrect
The tag makes text bold and signals strong importance, helping screen readers.
Which tag is best for italicizing text to show emphasis?
✗ Incorrect
The tag italicizes text and indicates emphasis, improving accessibility.
What happens if you use
<b> instead of <strong>?✗ Incorrect
makes text bold but does not add semantic meaning for screen readers.
How can you make text both bold and italic in HTML?
✗ Incorrect
Nesting and or and tags all make text bold and italic.
Why is semantic HTML important for bold and italic text?
✗ Incorrect
Semantic tags like and help screen readers by adding meaning to the text.
Explain how to make text bold and italic in HTML and why semantic tags matter.
Think about tags that add meaning, not just style.
You got /4 concepts.
Describe the difference between and tags and when to use each.
One is just style, the other adds meaning.
You got /4 concepts.