HTML List Tags in Hindi and English
HTML List Tag
List Tags के द्वारा
HTML Document में Lists बनाई जाती है. इसमें हम
Number Lists, Bullet Lists, Order Lists, Unordered Lists और Definition
Lists Create कर सकते है.
Lists are created in HTML
documents through List Tags. In this we can create Number Lists, Bullet Lists,
Order Lists, Unordered Lists and Definition Lists.
Three Types of List
Definition Lists
<dl>
<dl> Element का पूरा नाम Definition List होता है. Definition List
Element द्वारा Definition Lists को Define किया जाता है.
The full name of <dl> Element is Definition List. Definition Lists
are defined by the Definition List Element.
<dt>
<dt> Element का पूरा नाम Definition Term होता है. Definition Term
Element द्वारा Definition Term को Define किया जाता है.
The full name of <dt> Element is Definition Term. Definition Term
is defined by the Definition Term Element.
<dd>
<dd> Element का पूरा नाम Definition Description होता है.
Definition Description Element द्वारा Definition Terms के Description को Define
किया जाता है.
The full name of <dd> Element is Definition Description. The
description of the Definition Terms is defined by the Definition Description
Element.
Ex.
<dl>
<dt>Noun Definition</dt>
<dd>A word that is the name of a thing, an idea, a place or a
person.</dd>
Noun Definition
A word that is the name of a thing, an idea, a place or a person.
Order Lists
<ol>
<ol> Element का पूरा नाम Order List होता है. Order List Element द्वारा
Number या Order Lists बनाई जाती है.
The full name of <ol> Element is Order List. Number or Order Lists
are created by Order List Element.
<li>
<li> Element का पूरा नाम List Item होता है. List Item Element द्वारा
एक List में लिखे जाने वाले Data को Define किया जाता है.
The full name of <li> Element is List Item. The data to be written
in a list is defined by the List Item Element.
Ex-
<ol>
<Li>Input</li>
<li>output</li>
<li>Memory</li>
</ol>
1.
Input
2.
Output
3.
Memory
<ol
type=”A”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ol>
A.
Input
B.
Output
C.
Memory
<ol
type=”a”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ol>
a.
Input
b.
Output
c.
Memory
<ol type=”I”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ol>
I.
Input
II.
Output
III.
Memory
<ol type=”i”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ol>
i.
Input
ii.
Output
iii.
Memory
Unordered Lists
<ul>
<ul> Element का पूरा नाम Unordered List होता है। Unordered List
Element द्वारा Bullet Lists या Unordered Lists बनाई जाती है।
The full name of <ul> element is Unordered List. Bullet Lists or
Unordered Lists are created by Unordered List Element.
<ul type=”square”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ul>
§ Input
§ Output
§ Memory
<ul type=”Circle”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ul>
o
Input
o
Output
o
Memory
<ul type=”Disc”>
<li>Input</li>
<li>output</li>
<li>Memory</li>
</ul>
·
Input
·
Output
·
Memory
No comments: