HTML lists का इस्तेमाल सूचना की सूचियों (lists of information) को specify करने के लिए होता है| सभी सूचियों में एक या एक से ज्यादा list elements हो सकते हैं| HTML lists तीन प्रकार की होती हैं|
- Ordered List या Numbered List (ol)
- Unordered List या Bulleted List (ul)
- Description List या Definition List (dl)
HTML Ordered List या Numbered List
HTML ordered lists में सभी list items को अंकों से चिह्नित किया जाता है| इसे numbered list भी कहा जाता है| Ordered list <ol> tag के साथ शुरु होती है और list items <li> tag के साथ शुरु होती है|
- <ol>
- <li>Aries</li>
- <li>Bingo</li>
- <li>Leo</li>
- <li>Oracle</li>
- </ol>
Output
- Aries
- Bingo
- Leo
- Oracle
HTML ordered list की पूरी जानकारी के लिए यहां click करें| HTML Ordered List
HTML Unordered List or Bulleted List
In HTML Unordered list, सभी list items को bullets से चिह्नित किया जाता है| इसे bulleted list भी कहा जाता है| Unordered list <ul> tagसे शुरु होती है और list items <li> tag से शुरु होती हैं|
- <ul>
- <li>Aries</li>
- <li>Bingo</li>
- <li>Leo</li>
- <li>Oracle</li>
- </ul>
Output
- Aries
- Bingo
- Leo
- Oracle
HTML Unordered list की पूरी जानकारी के लिए यहां click करें| HTML Unordered List
HTML Description List या Definition List
HTML Description list भी एक ऐसा list style है जिसको HTML और XHTML support करता है| इसको definition list भी कहा जाता है जहां entries को dictionary या encyclopedia की तरह सूचीबद्ध (listed) किया जाता है|
Definition list बहुत ही उपयुक्त है अगर आप glossary, list of terms या दूसरी name-value list को present करना चाहते हो|
HTML definiton list में नीचे दिये गए तीन tag होते हैं|
- <dl> tag list की शुरुआत को परिभाषित करता है|
- <dt> tag एक term को परिभाषित करता है|
- <dd> tag definiton (description) term को परिभाषित करता है|
- <dl>
- <dt>Aries</dt>
- <dd>-One of the 12 horoscope sign.</dd>
- <dt>Bingo</dt>
- <dd>-One of my evening snacks</dd>
- <dt>Leo</dt>
- <dd>-It is also an one of the 12 horoscope sign.</dd>
- <dt>Oracle</dt>
- <dd>-It is a multinational technology corporation.</dd>
- </dl>
Output
- Aries
- -One of the 12 horoscope sign.
- Bingo
- -One of my evening snacks
- Leo
- -It is also an one of the 12 horoscope sign.
- Oracle
- -It is a multinational technology corporation.
Click here for full details of HTML description list. HTML Description List
Supporting Browsers
Element | ![]() |
![]() |
![]() |
![]() |
![]() |
<ol><ul><dl> | Yes | Yes | Yes | Yes | Yes |