answersLogoWhite

0

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.

User Avatar

Wiki User

15y ago

What else can I help you with?

Continue Learning about Engineering

Which tag is used for displaying the unordered list with bullets?

Use the following to create an unordered (bulleted) list:Item 1Item 2Item 3The list will look like this:Item 1Item 2Item 3Code 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.


What is the tag for a unordered list?

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


To create a numbered list in HTML which tag would you begin with?

It's called <ol> for "ordered list".


What do HTML tags mean?

A HTML tag tells your web browser how to format the information at the tag. Such tags include <html>, <head>, <title>, <style>, <body>, <h1>, <p>, <b>, <a>, <font>, <embed> and <div>. Each tag refers to an area where certain commands can occur. For example, <p> Hyper-Text Mark-Up Language </p> would result in the phrase "Hyper-Text Mark-Up Language" on a web browser; the <p> tag being a paragraph tag and the </p> signifying the end of the tag.


What is a list in which each item is automatically numbered or lettered?

You can use an (ordered list) tag or an (unordered list) tag. The following does numbering:Example 1Example 2Example 3Which will give you:1. Example 12. Example 23. Example 3The following does bullet points:Wiki Example:Example 1Example 2Example 3Which will give:Wiki Example:Example 1Example 2Example 3

Related Questions

How will you display images in a user page in one row 4 images?

The easiest way to do this is going to be by using the HTML table. You can (and some would argue should) use an unordered list for this, but a table will be simpler.


Which tag is used for displaying the unordered list with bullets?

Use the following to create an unordered (bulleted) list:Item 1Item 2Item 3The list will look like this:Item 1Item 2Item 3Code 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.


What is one effective method for studying and memorizing ordered or unordered lists"?

One effective method for studying and memorizing ordered or unordered lists is to use mnemonic devices, which are memory aids that help you associate the items in the list with easier-to-remember cues or patterns.


Where do you get the navigation bars from?

You can either make them from scratch, use regular unordered list tags and styled them either vertically or horizontally. Or, you can take a look at these nav menus and pick the one you like... See following sites for navigation menus: http://www.dynamicdrive.com/dynamicindex1/ http://www.cssplay.co.uk/menus/ How to Style an Unordered List with CSS: http://www.webreference.com/programming/css_style2/index.html How To: http://www.w3.org/TR/WCAG10-HTML-TECHS/#links http://www.creativepro.com/article/dreamweaver-how-create-you-are-here-navigation-links http://efuse.com/Design/navigation.html Practice Your Image Link Code Online: http://www.w3schools.com/HTML/tryit.asp?filename=tryhtml_imglink


How can you make a list that organizes items with bullets?

A list organized with bullets is an unordered list. The tag to create an unordered list is UL and the tag for the individual list items is LI. <ul> <li>An item</li> <li>Another Item</li> <li>Yet another item</li> </ul> By default, most browsers will render the above code with bullets in front of the list items. If you want to ensure that behavior, however, you can use a simple CSS line. ul { list-style: disc outside none; }


Where can I read a guide online to learn how to use HTML?

A google search led me to the website www.webdevelopersnotes.com/.../html/html_guide_logical_tags.php3. It is a list of easy, helpful html tags for beginners.


How can you make a list in HTML?

An unordered (bulleted) list uses the tags, as follows:First itemSecond itemThis produces:First itemSecond itemFor an ordered (numbered) list, use the tags instead:First itemSecond itemThis produces the following:First itemSecond itemYou can also nest lists within lists: First itemFirst subitemSecond subitemSecond itemThird subitemFourth subitemThis produces the following:1. First itemFirst subitemSecond subitem2. Second item Third subitemFourth subitem


What is the tag for a unordered list?

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


Why can you no longer use bullet points when answering a question on WikiAnswers?

It is still possible to use bullet points in answers on WikiAnswers. To do so, simply click "Insert unordered list" on the toolbar above the answer box when answering or editing the answer to a question.


How do you get a list of the in game admin codes in Battlefield 2142?

this has a list of the codes and what they do and how u can use them to tweak your game: http://www.tweakguides.com/BF2142_1.html


How do you create a drop down list of content for your webpage?

You could use the HTML <form> attribute to learn more about it have a look under the HTML section @ http://www.w3schools.com


How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.