How to write bulleted point in HTML?

 Posted by Raja on 3/5/2009 | Category: HTML 5 Interview questions | Views: 9939
Answer:

To write bulleted point, use <li> under <ul> like following.

    <ul> 

<li>Point 1</li>
<li>Point 2</li>
<li>Point 3</li>
</ul>

In this case Point 1, Point 2 and Point 3 will appear as bulleted point.


Asked In: Many Interviews | Alert Moderator 

Comments or Responses

Login to post response