answersLogoWhite

0

<li>Enter the text that you want to list here</li>

<li>Enter the next item that you want to list here</li>

And so on until all the items you want to list are listed.

User Avatar

Wiki User

12y ago

What else can I help you with?

Continue Learning about Engineering

When is it appropriate to use an unordered list in HTML?

Any time that you want to put a list of items on your page but don't need to have them numbered or lettered. Ordered lists put numbers or letters in front of the items, whereas unordered lists don't. For many lists there is no need for any numbers or letters, just the items themselves, so that is when you use an unordered list.


HTML supports which types of lists?

There are 3 different types of list in X/HTML. Ordered lists, unordered lists, and definition lists. Order lists are made using the OL tag and LI (list items), and display, by default, in a format that is numbered sequentially, starting at 1. The number system, by default is Arabic. Unordered lists are made using the UL tag and list items. They display with bullets preceding each list item. Definition lists are made using the DL tag (definition list) and contain DT (definition term) and DD tags (Definition definition). By default, the definitions are indented from the terms, without other formatting.


What is the function of LIST tag in HTML language?

There is no LIST tag in HTML. There are two tags that can help us create lists. &lt;OL&gt; to create ordered lists &lt;UL&gt; to create unordered lists


Is used to separate single list items in HTML?

Items in an ordered or unordered list will be surrounded by &lt;li&gt;&lt;/li&gt; tags.


How can you make a list that lists the items with bullets in HTML language?

Like this:first entrysecond entry...'ul' is 'unordered list', using bullet points. 'li' is an item in the list.See related link to w3schools, they have a nice overview of all the HTML tags.

Related Questions

How do you list a number of items?

HTML also contains a provision of Lists in it. They can be numbered if the option &lt;ol&gt; is used before &lt;li&gt;.


When is it appropriate to use an unordered list in HTML?

Any time that you want to put a list of items on your page but don't need to have them numbered or lettered. Ordered lists put numbers or letters in front of the items, whereas unordered lists don't. For many lists there is no need for any numbers or letters, just the items themselves, so that is when you use an unordered list.


HTML supports which types of lists?

There are 3 different types of list in X/HTML. Ordered lists, unordered lists, and definition lists. Order lists are made using the OL tag and LI (list items), and display, by default, in a format that is numbered sequentially, starting at 1. The number system, by default is Arabic. Unordered lists are made using the UL tag and list items. They display with bullets preceding each list item. Definition lists are made using the DL tag (definition list) and contain DT (definition term) and DD tags (Definition definition). By default, the definitions are indented from the terms, without other formatting.


What is the function of LIST tag in HTML language?

There is no LIST tag in HTML. There are two tags that can help us create lists. &lt;OL&gt; to create ordered lists &lt;UL&gt; to create unordered lists


How many HTML Lists?

Lists in HTML are of 2 types i.e. UL and OL. UL defines the unordered list whereas OL defines ordered list.


What are the different types of lists in HTML?

There are 3 different types of list in X/HTML. Ordered lists, unordered lists, and definition lists. Order lists are made using the OL tag and LI (list items), and display, by default, in a format that is numbered sequentially, starting at 1. The number system, by default is Arabic. Unordered lists are made using the UL tag and list items. They display with bullets preceding each list item. Definition lists are made using the DL tag (definition list) and contain DT (definition term) and DD tags (Definition definition). By default, the definitions are indented from the terms, without other formatting.


What is the meaning of list in HTML?

A list is like a list of any kind, when you want to have something like your top 10 favourite movies or countries you have been in.  Lists can be formatted in different ways, with numbers, letters or bullet points before items on a list.  You can also have lists within lists.  See the link below.


What is a list in HTML?

A list in HTML defines a collection of items. List can be ordered (OL) or Unordered (UL).


Is used to separate single list items in HTML?

Items in an ordered or unordered list will be surrounded by &lt;li&gt;&lt;/li&gt; tags.


How can you make a list that lists the items with bullets in HTML language?

Like this:first entrysecond entry...'ul' is 'unordered list', using bullet points. 'li' is an item in the list.See related link to w3schools, they have a nice overview of all the HTML tags.


What does the code li mean?

list item. it is the child of either &lt;ul&gt; - unordered list, or &lt;ol&gt; - ordered list in html


What is the correct HTML tag for making a list that lists things with numbers?

The correct HTML tag to use when making a list of things that will be numbered is the orderer list element.The ordered list element will automatically number the list items it contains. For instance:The first itemThe second itemThe third item And the code will render in a fashion similar to this:The first itemThe second itemThe third itemYou can change the way an ordered list is numbered using CSS properties.