Unordered List:-
Unordered List को <ul> Tag द्वारा Define किया जाता हैइस Type की List का उपयोग एक प्रकार की सूचना को बिना किसी तय क्रम में दिखाने के लिए किया जाता है Unordered List को Bulleted List भी कहते है क्योंकि List Items के पहले Bullet लग जाते है।
Syntax:-<ul type=”attribute”>
Note:-Unordered List में type Attribute का इस्तेमाल Bullet Style को Define करने के लिए किया जाता है By Default UL List में List Items केलिए “Circle” का इस्तेमाल किया जाता है लेकिन, type Attribute की सहायता से हम Circle के अलावा 3 अन्य प्रकार की List Style Type लगा सकते है
Circle, Disc, Square
Ex: –
<ul> <li>Linux</li>
<li>Windows</li>
<li>Mac</li>
<li>Android</li>
</ul>
Unordered List:-
An unordered list is used to create a bulleted list of items.
The <ul>….. </ul> tag is used to define an unordered list; whereas, the <li>…</li> tag is used to define the items of the list.
Syntax:- <ul type=”attribute”>
Note:- type attribute determines which type of bullets should be used with the list items. This attribute can be used with <li> tag also to have different bullet for different list item in the same list. The options are-
Circle, Disc, Square
Ex: –
<ul>
<li>Linux</li>
<li>Windows</li>
<li>Mac</li>
<li>Android</li>
</ul>