Computer Applications
Explain the following with the help of an example.
(a) <B> </B>
(b) <OL type ="1">
HTML Intro
5 Likes
Answer
(a) <B> </B>
The bold tag makes the text bold.
For example, <B> This text is written in bold. </B>
(b) <OL type = "1">
The ordered list <OL> is used to display the list of items as a Numbered list. The attribute type = "1" sets the type of numbering as arabic numerals.
For example,
<OL>
<LI> Apple </LI>
<LI> Mango </LI>
<LI> Banana </LI>
</OL>
The ordered list is displayed as follows:
- Apple
- Mango
- Banana
Answered By
2 Likes