answersLogoWhite

0


Best Answer

maintains proper semantics of a html document

provides flexibility as the order of lists can be easily changed

User Avatar

moses malaba

Lvl 2
2y ago
This answer is:
User Avatar
More answers
User Avatar

Wiki User

10y ago

list tag

f

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What are the advantage and disadvantage using List Tag?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the tag that starts a no numbered list?

The <UL> tag, which is an unordered list.


Which tag creates a bullet?

The li tag, which stands for list item.


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

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


What is HTML to list?

To make a numbered list in HTML, use the following code: <ol> <li>This would be item 1</li> <li>This would be item 2</li> <li>This would be item 3</li> <li>And so on...</li> </ol> The <ol> tag starts the numbered list, while the </ol> tag ends it. Each <li> tag starts a new item in the list. Each </li> tag ends an item in the list. Just be sure to remember to close each list item before beginning the next one or before ending the whole list, otherwise your list will not format properly. For a list without numbers (a bulletpoint list), simple replace the <ol> tag with a <ul> tag, and the </ol> tag with a </ul> tag. Hope this helps! :)


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.


Are there toilets in laser tag?

Some large laser tag courses may have toilets. However, using one will give the opposing team a tactical advantage, because they would just have to monitor the toilet and shoot anyone going in or coming out.


What does the OL tag do?

The <ol> tag creates an ordered (i.e. numbered) list in HTML.


Where can one learn about using HTML select?

Most HTML instructional websites should contain information on the select tag, such as w3schools and tizag. Briefly, the select tag creates a pull-down menu containing a list of options. These options are specified using the option tag. The label for each option tag is nested between its opening and closing tags, which are nested within the opening and closing select tags.


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 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 are the tags for a definition list for HTML?

There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.There are three of them. They are the tag, the tag and the tag.


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.