Unordered List
An unordered list is used when the order doesn’t matter. Items are marked with bullets (•) by default.
Example:
<ul>
<li>Apple</li>
<li>Banana</li>
<li>Cherry</li>
</ul>
Changing Bullet Style (Type Attribute)
- disc (default) → type="disc"
- circle → type="circle"
- square → type="square"
Example:
<ul type="square">
<li>Milk</li>
<li>Eggs</li>
<li>Bread</li>
</ul>
Qus. 1 : How can you make a bulleted list?
- <dl>
- <ol>
- <list>
- <ul>
- <ol>
- <ul>
- <li>
- <ll>
Programs
HTML code for creating the following output
html code to design multiple list
html code to design complex nested list