The HTML <ul> element (or HTML Unordered List Element) represents an unordered list of items, namely a collection of items that do not have a numerical ordering, and their order in the list is meaningless.
EX<!DOCTYPE html> <html> <body> <h2>Unordered List with Default Bullets</h2> <ul> <li>Core java</li> <li>C</li> <li>C++</li> </ul> </body> </html>O/P