HTML bulleted list that is also known as unordered list in HTML can be nested within other HTML unordered list very easily. HTML Nested unordered lists are useful for displaying the important points on page with bullets in front of each sentence. You can create short list of points with bullets of different styles that binds the interest of visitors and urge them to look at the specially formatted points on the pages having large content. CSS style properties provide the functionality to change the bullet styles with attractive images that makes the webpage more readable and increases its look and feel. You can display the nested list of points with bulleted unordered lists and also differentiate each nested unordered list with different bullet styles. To display the nested HTML ul tag along with its own list items created using HTML li tag, inside the paired HTML <li> and </li> tag.
<ul type="square">
<li>Main Unordered Bulleted List item 1</li>
<li>
Below is an example of HTML nested unordered list with bullets
<ul type="disc">
<li>nested list item 1</li>
<li>nested list item 2</li>
Sub nested unordered list
<ul type="circle">
<li>sub nested list item 1</li>
<li>sub nested list item 2</li>
</ul>
</li>
Output:
Be the first to rate this post
Tags: html, html nested ul tag, html nested ol tag, html ul tag, html unordered list, html unordered list bullets, html ul tag type attribute, html tutorials, html ol tag, html li tag, nested ordered lists in html, nested unordered lists in html
10/11/2008 3:30:36 AM