Which tag is used to make text bold in HTML?
A
<strong> B
<b> C
<bold> D
<em>
Analysis & Theory
`<b>` is used to make text bold without adding importance.
Which tag emphasizes text with importance in HTML?
A
<b> B
<strong> C
<bold> D
<em>
Analysis & Theory
`<strong>` is used to indicate strong importance and renders bold text.
Which HTML tag is used to italicize text?
A
<italic> B
<i> C
<em> D
<italics>
Analysis & Theory
`<i>` displays text in italic style without implying importance.
What does the `<em>` tag do?
A
Makes text bold B
Adds emphasis (usually italic) C
Makes text larger D
Changes font
Analysis & Theory
`<em>` emphasizes text semantically, typically rendered as italic.
Which tag is used to underline text in HTML?
A
<u> B
<underline> C
<ul> D
<line>
Analysis & Theory
`<u>` is used to underline text, though it's not recommended for importance.
Which tag is used to display text as deleted (strikethrough)?
A
<del> B
<strike> C
<s> D
<remove>
Analysis & Theory
`<del>` is used to show deleted content with a line through it.
Which HTML tag is used to define subscripted text?
A
<sub> B
<sup> C
<small> D
<low>
Analysis & Theory
`<sub>` renders the text slightly below the baseline (e.g., H₂O).
Which HTML tag is used for superscript text?
A
<sup> B
<sub> C
<upper> D
<high>
Analysis & Theory
`<sup>` displays the text above the normal line (e.g., x²).
Which HTML element is used to display computer code?
A
<script> B
<code> C
<kbd> D
<pre>
Analysis & Theory
`<code>` is used to represent inline code snippets.
Which tag is used to define preformatted text?
A
<format> B
<pre> C
<text> D
<fixed>
Analysis & Theory
`<pre>` preserves spaces and line breaks and displays text in a monospace font.