answersLogoWhite

0

list item. it is the child of either <ul> - unordered list, or <ol> - ordered list in html

User Avatar

Wiki User

13y ago

Still curious? Ask our experts.

Chat with our AI personalities

RafaRafa
There's no fun in playing it safe. Why not try something a little unhinged?
Chat with Rafa
EzraEzra
Faith is not about having all the answers, but learning to ask the right questions.
Chat with Ezra
RossRoss
Every question is just a happy little opportunity.
Chat with Ross
More answers

This <li></li> element is a list item. It's used to create single entries in both ordered and unordered lists in HTML.

User Avatar

Wiki User

12y ago
User Avatar

Add your answer:

Earn +20 pts
Q: What does the code li mean?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What is the process of ordering HTML tags?

I cant able to understand the question what you have asked..I will give the answer what i understand a bit from your question. Sample Code for HTML Ordered List: EX: &lt;ol&gt; &lt;li&gt;Coffee&lt;/li&gt; &lt;li&gt;Tea&lt;/li&gt; &lt;li&gt;Milk&lt;/li&gt; &lt;/ol&gt;


What is the tag for a unordered list?

An unordered list is defined by &lt;ul&gt; &lt;/ul&gt; and ordered list is defined as &lt;ol&gt; &lt;/ol&gt; Both of these list types take list items are their child elements. So: &lt;ul&gt; &lt;li&gt;Bulleted item 1&lt;/li&gt; &lt;li&gt;Bulleted item 2&lt;/li&gt; &lt;li&gt;Bulleted item 3&lt;/li&gt; &lt;/ul&gt; OR: &lt;ol&gt; &lt;li&gt;Numbered item 1&lt;/li&gt; &lt;li&gt;Numbered item 2&lt;/li&gt; &lt;li&gt;Numbered item 3&lt;/li&gt; &lt;/ol&gt;


How to make nested list using HTML tags?

To nest a list in HTML, you simply put the child list into a list item of the parent list. The parents list item will completely encompass the nested list. &lt;ul&gt; &lt;li&gt;Item One&lt;/li&gt; &lt;li&gt;Item Two&lt;/li&gt; &lt;li&gt;Item Three &lt;ul&gt; &lt;li&gt;Item 3.1&lt;/li&gt; &lt;li&gt;Item 3.2&lt;/li&gt; &lt;/ul&gt; &lt;/li&gt; &lt;!--This is the end of item 3--&gt; &lt;li&gt;Item Four&lt;/li&gt; &lt;/ul&gt;


What is the qualification code for diploma students?

What do you mean by that? Qualification code?


What type of HTML list wil automatically place a number in front of the item?

An ordered list: &lt;ol&gt; &lt;li&gt; First item &lt;li&gt; Second item &lt;li&gt; Third item &lt;li&gt; Fourth item &lt;li&gt; Fifth item &lt;/ol&gt;