Computer Applications
The unnumbered lists can be created by …………… tag.
<UL><OL><LI>- Both (1) and (2)
- Both (1) and (3)
- Both (2) and (3)
HTML Intro
3 Likes
Answer
Both (1) and (3)
Reason — The unnumbered lists can be created by <UL> and <LI> tags. An unnumbered list begins with a tag that identifies the type of list (<UL> for unnumbered) and then uses the <LI> tag to denote the beginning of each new list item. For example:
<UL>
<LI>Apples</LI>
<LI>Bananas</LI>
<LI>Grapes</LI>
</UL>
Answered By
3 Likes
Related Questions
To specify the background image for the document, Background attribute is used with which of the following tags ?
<BODY><HTML><P>- None of these
To define the basic font size, which of following tag is used ?
- SIZE
- BASEFONT
- FONT
- All of these
The numbered 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 Fourth