answersLogoWhite

0


Best Answer

Use the following to create an unordered (bulleted) list:

  • Item 1
  • Item 2
  • Item 3

The list will look like this:

  • Item 1
  • Item 2
  • Item 3

Code Breakdown

    Stands for unordered list, and begins the list.

  • Stands for line item, and is a line item in the list.

  • Ends the line item.

Ends the unordered list.

User Avatar

Wiki User

12y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

8y ago

The <ul> tag defines an unordered list, the <li> tag defines items in the list. The bullets can be customized using CSS.

Example:

<ul>

<li>Item 1</li>

<li>Item 2</li>

<li>Item 3</li>

</ul>

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: Which tag is used for displaying the unordered list with bullets?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

What does li tag creates when used in an unordered lists?

The LI tag creates a list item. In an unordered list, this item is bulleted by default in most browsers.


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


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 is a bulleted list created using HTML?

A basic list using bullets (small black circles) starts with the tag &lt;ul&gt; and each item listed with the tags &lt;li&gt;item one &lt;/li&gt; &lt;li&gt;item two &lt;/li&gt; &lt;/ul&gt; (end list) will result in Item one item two For a numbered list instead of a bullet list use &lt;ol&gt; (ordered list) instead of &lt;ul&gt; (unordered list) This will display your information in sequential orde. to start. for example &lt;ol&gt; &lt;li&gt;item one&lt;/li&gt; &lt;li&gt;item two&lt;/li&gt; &lt;/ol&gt; This will result in # item one # item two Inside a list item &lt;li&gt;you can put paragraphs, line breaks, images, links, and also other lists.&lt;/li&gt; The example above will be a numbered list if you want it in alphabetical order, add the attribute type=".." to the &lt;li&gt; tag with the value "A" (lower case "a" will give you a lower case list) like this: &lt;li type="A"&gt;


How the pointer used in the linked list?

The pointer in linked list is used for traversing through the elements of the linked list. In a singly linked list, only a next pointer exits. So this pointer can be used for traversing only in one direction in the list. In case of a doubly linked list, a next and previous pointer exits. These pointers are used for traversing in both direction in the list.

Related questions

What does li tag creates when used in an unordered lists?

The LI tag creates a list item. In an unordered list, this item is bulleted by default in most browsers.


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


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.


Why you use bulleted list in Microsoft word?

Bullets and numbering allow you to organize text in lists. Bullets are useful for unordered lists in which each item is not significantly more important than others. Numbering is useful for lists in which each item is part of a sequence of steps and ought to be followed in that order. By using list levels, you can organize bullets and numbering into categories. List levels can express categories through any combination of indentation, font size, and bullet styles or list styles


Text symbols such as small circles or check marks used to introduce items in a list?

Bullets :)


What do the numbering and bullets work as?

Bullets and numbering are a means of neatly presenting a list of points or items in a document. Bullets are also known as bullet points and can be used to make a list. Numbering is generally used when giving step-by-step instructions for doing something.


Where would you find a list of used hondas for sale?

You can find a list of used Honda automobiles for sale through their website. You can choose a dealership in your area through their main website. The individual dealership will list their used car inventory, usually displaying an exterior picture of the car and a list of the details such as millage and condition.


What are bullets used for in word?

Bullets are used for listing items or actions


Was silver used in bullets?

Silver was used in bullets for quite a while. This metal proved to be very precious in making the bullets.


What is Primary file organization unordered?

Primary file organization is the way in which we determine how the file records are physically placed on the disk and hence, how the records can be accessed. Unordered means that there is no particular order in this way, i.e. a heap algorithm is used.


Can you use bullets in MLA format paper?

No, bullets are not typically used in MLA format papers. Instead, lists are formatted as part of the normal paragraph structure. Each list item can be preceded by a number or a lowercase letter and indented.


What type of punctuation marks are usually used to enclose letters or numbers that precede items in a list?

In an unordered list, you usually just bullet the list, but in an ordered list it is typical to just put a period after a letter or number. However, if you are using really complex nested lists, then sometimes the style is switched up depending on the nesting style and how deep you are. Occasionally, people will use parentheses around numbers in a list.