Computer Applications
The numbered lists can be created by …………… tag.
<UL><OL><LI>- Both (1) and (2)
- Both (1) and (3)
- Both (2) and (3)
HTML Intro
5 Likes
Answer
Both (2) and (3)
Reason — The numbered lists can be created by <OL> and <LI> tags. A numbered list begins with a tag that identifies the type of list (<OL> for numbered) and then uses the <LI> tag to denote the beginning of each new list item. For example:
<OL>
<LI> First item</LI>
<LI> Second item</LI>
<LI> Third item</LI>
</OL>
Answered By
2 Likes
Related Questions
To define the basic font size, which of following tag is used ?
- SIZE
- BASEFONT
- FONT
- All of these
The unnumbered lists can be created by …………… tag.
<UL><OL><LI>- Both (1) and (2)
- Both (1) and (3)
- Both (2) and (3)
Consider the following HTML code :
<ol type='i'> <li>First</li> <li>Second</li> <li>Third</li> <li>Fourth</li> </ol>Choose the correct output that would be shown upon execution of the above code , from the choices given below:
1. I. First II. Second III. Third IV. Fourth2. i. First ii. Second iii. Third iv. Fourth3. I First II Second III Third IV Fourth4. i First ii Second iii Third iv FourthWe can create a numbered list using the …………… tag.
<UL><list><OL><DL>