HTML Unordered List | HTML Bulleted ListHTML Unordered List or Bulleted List displays elements in bulleted format . We can use unordered list where we do not need to display items in any particular order. The HTML ul tag is used for the unordered list. There can be 4 types of bulleted list:
To represent different ordered lists, there are 4 types of attributes in <ul> tag.
HTML Unordered List ExampleTest it NowOutput:
ul type="circle"Test it NowOutput:
ul type="square"Test it NowOutput:
ul type="none"Test it NowOutput:
Note: The type attribute is not supported in HTML5, instead of type you can use CSS property of list-style-type. Following is the example to show the CSS property for ul tag.Code: Test it NowOutput: ![]() Supporting Browsers
Next TopicHTML var Tag
|