0
0
HTMLmarkup~5 mins

Bold and italic text in HTML - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
A&lt;em&gt;
B&lt;strong&gt;
C&lt;b&gt;
D&lt;i&gt;
Which tag is best for italicizing text to show emphasis?
A&lt;b&gt;
B&lt;strong&gt;
C&lt;em&gt;
D&lt;i&gt;
What happens if you use <b> instead of <strong>?
AText becomes bold without semantic meaning
BText becomes italic
CText becomes underlined
DText becomes bold and emphasized
How can you make text both bold and italic in HTML?
AAll of the above
BUse &lt;strong&gt;&lt;em&gt;Text&lt;/em&gt;&lt;/strong&gt;
CUse &lt;em&gt;&lt;strong&gt;Text&lt;/strong&gt;&lt;/em&gt;
DUse &lt;b&gt;&lt;i&gt;Text&lt;/i&gt;&lt;/b&gt;
Why is semantic HTML important for bold and italic text?
AIt changes the font size
BIt makes text blink
CIt changes the background color
DIt helps screen readers understand meaning
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.