You can make text hold by using tag. True and false
Answers
Answer:
Formatting elements were designed to display special types of text:
<b> - Bold text
<strong> - Important text
<i> - Italic text
<em> - Emphasized text
<mark> - Marked text
<small> - Smaller text
<del> - Deleted text
<ins> - Inserted text
<sub> - Subscript text
<sup> - Superscript text
Explanation:
Answer:-
Texts in html can be made bold by using <b> tag.
The <b> tag makes the text bold.
There are many other tags used for formatting like,
<i> tag for making the text italic.
<u> tag for making the text underlined.
<em> tag for putting emphasis on text.
<strong> tag for important texts.
<sup> and <sub> tag for superscript and subscript text respectively.
<q> tag for shorter quotes.
<blockquote> for longer quote and so on.
<ins> tag for inserted text.
<del> tag for deleted text.
<abbr> tag for abbreviation.
<cite>, <dfn> for citations.
<s> tag having same function as <del> tag.