Computer Science, asked by jaganrao6567, 4 months ago

write an html code to display all types of bulleted list​

Answers

Answered by twinklesharma57
0

Answer:

Hope this answer will help you!!!

Attachments:
Answered by sanjaypal146
0

Answer:

<!DOCTYPE html>

<html>

<body>

<ul type="square">

 <li>Coffee</li>

 <li>Tea

   <ul type="circle">

     <li>Black tea</li>

     <li>Green tea</li>

   </ul>

 </li>

 <li>Milk</li>

</ul>

</body>

</html>

Explanation:

disc Sets the list item marker to a bullet (default)

circle Sets the list item marker to a circle

square Sets the list item marker to a square

none The list items will not be marked

note :change the above values in type attribute of UL tag to make different bullet styles.

Similar questions