Computer Applications
Answer
The <UL> tag is used to define an unordered list. It indents each item in the list and adds a bullet against each of them. The <LI> tag is used to display the listed items in an unordered or ordered list.
Consider the following example,
<HTML>
<BODY>
FRUITS
<UL>
<LI>Mango</LI>
<LI>Apple</LI>
<LI>Guava</LI>
<LI>Banana</LI>
</UL>
</BODY>
</HTML>
The list is displayed as follows:
FRUITS
- Mango
- Apple
- Guava
- Banana
Related Questions
What do you mean by nesting of list?
What is the function of Definition List? Explain its structure with the help of an example.
Mihir wants to know the name of any two text editors that can be used to write the code for an HTML webpage. Can you provide him with the names?
Write the HTML code for the following in the space provided.
- A normal sized heading with the text, "LOYOLA HIGH SCHOOL."
- The largest size heading, "PETER PAN"
- A normal sized heading, "A MUSICAL"
- A horizontal line across the page