Q. Which tag is used to list items with bullets?
β
Correct Answer: (C)
<ul>…</ul>
Explanation: The <ul> tag defines an unordered list. Example :
<ul>
<li>JavaScript</li>
<li>HTML / CSS</li>
<li>PHP</li>
</ul>