Google News
logo
HTML - Interview Questions
How can you make a bulleted list in HTML?
An unordered list (<ul>) is used to create a bulleted list in HTML. Below is a simple example to create bulleted list in HTML.
 
<p>Fruits List</p>
<ul>
   <li>Apple</li>
   <li>Banana</li>
   <li>Mango</li>
</ul>
Advertisement