Share
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Aviance School is one of the largest web solutions platform in India for developers to learn and share their programming knowledge and build their careers.
Bullet Point Lists (or Unordered Lists)
Unordered List:– the <ul> Tag
Bullet point lists are known as unordered lists (UL) because there is no numbering involved. The bulleted list uses the <ul> </ul> tag pair.
Code example:
<ul type="square">
<li>Item 1</li>
<li>Item 2</li>
<li>Item 3</li>
</ul>
The type attribute determines what kind of bullet you want to display on the page.
The most common types are:
type=”circle” – an unfilled circle
type=”disc” – a filled circle
type=”square” – a filled square