HTML Unordered List

Unordered Lists

Unordered Lists allows you to create a list of items in an unordered manner with bullet points

				
					Unordered List is declared using the <ul></ul> tag.
It does not display any raw text. 
To display raw, <li></li> tag is used. 
Individual texts must be included in the <li></li>
				
			

Format:

				
					<ul>
    <li>
    </li>
</ul>
				
			

Example:

				
					<ul>
    <li>Apple</li>
    <li>Jackfruit</li>
    <li>Mango</li>
    <li>Banana</li>
</ul>
				
			
0 0 votes
Article Rating
Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments