Skip to main content

Posts

Showing posts with the label Types of HTML lists

Types of HTML Lists

👉 TYPES OF HTML LIST We have 3 types of lists in HTML Order Lists Unordered Lists Description List How to write a Ordered list in HTML. <ol> <li>Computer</li> <li>Mouse</li> <li>Printer</li> <li>Monitor</li> </ol> We also change of type in Ordered list type: type="1" The list items will be numbered (default) type="A" The list items will be uppercase alphabet  type="a" The list items with lowercase letters type="I" The list items will be uppercase roman numbers type="i" The list items will be numbered with lowercase roman numbers UNORDERED LIST <h2> Unordered lists </h2> <ul> <li> facebook</li> <li>twitter</li> <li>chatbox</li> <li>bingo</li> </ul> Output : We can also change type of Square, Circle, and disc disc Sets the list item to a bullet (default) circle Sets the list item to a circle