answersLogoWhite

0

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

User Avatar

Wiki User

15y ago

What else can I help you with?

Related Questions

What is HTML to list?

To make a numbered list in HTML, use the following code: &lt;ol&gt; &lt;li&gt;This would be item 1&lt;/li&gt; &lt;li&gt;This would be item 2&lt;/li&gt; &lt;li&gt;This would be item 3&lt;/li&gt; &lt;li&gt;And so on...&lt;/li&gt; &lt;/ol&gt; The &lt;ol&gt; tag starts the numbered list, while the &lt;/ol&gt; tag ends it. Each &lt;li&gt; tag starts a new item in the list. Each &lt;/li&gt; 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 &lt;ol&gt; tag with a &lt;ul&gt; tag, and the &lt;/ol&gt; tag with a &lt;/ul&gt; tag. Hope this helps! :)


What does the OL tag do?

The &lt;ol&gt; tag creates an ordered (i.e. numbered) list in HTML.


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

It's called &lt;ol&gt; for "ordered list".


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.


What is UL in HTML?

The UL tag is the opening tag that creates an unordered list. An unordered list has items with different bullets before them, rather than being numbered or having letters before them. The LI tag is a list item. The following is a simple example of an unordered list. &lt;ul&gt; &lt;li&gt; First item &lt;li&gt; Second item &lt;li&gt; Third item &lt;/ul&gt;


What is the difference between a numbered list and an outlined numbered list?

The outlined number list has a hiearchy.


How can you make a list that lists the items with numbers in dreamweaver?

To create a numbered list in Adobe Dreamweaver, use the built-in list tools in the Insert menu. Click on &quot;Insert&quot; in the top menu, then select &quot;List&quot; and choose &quot;Ordered List&quot; to start a numbered list. You can then enter your items, and Dreamweaver will automatically format them with numbers. Alternatively, you can manually write HTML using the &lt;ol&gt; tag for ordered lists and &lt;li&gt; tags for each list item.


What is the difference between a numbered list and an outline numbered list in a Microsoft Word document.?

A numbered list has only one level. An outline list has multiple nested levels to support outlining.


What is the difference between a numbered list and an outlined numbered list in a Microsoft word document?

A numbered list has only one level. An outline list has multiple nested levels to support outlining.


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


How can you make a numbered list?

I take it you want to create a list that is numbered. 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) 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;


Can An existing numbered list cannot be easily converted to a bulleted list?

Existing numbered list could easily be converted to a bullet list. This can be done by changing the properties.