HTML Lists
-create an unordered list (bullet points):
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
-create an ordered list:
<ol>
<li></li>
<li></li>
<li></li>
</ol>

#dc#dc comics#batman#batfamily#bruce wayne#batfam#dick grayson#tim drake#dc fanart


seen from United States

seen from Mexico
seen from Haiti

seen from Indonesia
seen from Russia

seen from United States
seen from Hong Kong SAR China
seen from United Arab Emirates
seen from United Kingdom
seen from China

seen from Netherlands
seen from United States
seen from China
seen from Hong Kong SAR China
seen from United States
seen from Italy
seen from China
seen from United States

seen from China

seen from United States
HTML Lists
-create an unordered list (bullet points):
<ul>
<li>one</li>
<li>two</li>
<li>three</li>
</ul>
-create an ordered list:
<ol>
<li></li>
<li></li>
<li></li>
</ol>
Friends in this video I am going to show you what is the use of Unordered Lists Tag in HTML andhow many types of UL Tag are there in HTML. Secondly I am going to teach you what is the use of OrderedLists Tag in HTML and how many types of OL Tag are there in HTML .
Friends in this video I am going to show you what is the use of Unordered Lists Tag in HTML andhow many types of UL Tag are there in HTML. Secondly I am going to teach you what is the use of OrderedLists Tag in HTML and how many types of OL Tag are there in HTML .
Friends in this video I am going to show you what is the use of Unordered Lists Tag in HTML and how many types of UL Tag are there in HTML. Secondly I am going to teach you what is the use of Ordered Lists Tag in HTML and how many types of OL Tag are there in HTML .
The HTML and XHTML support another list style which is called definition lists where entries are listed like in a dictionary. The definition list is the ideal way to present a list of terms or another name/value list.
The HTML and XHTML support another list style which is called definition lists where entries are listed like in a dictionary. The definition list is the ideal way to present a list of terms or another name/value list. Learn more...
html lists guide
just posting for my own reference/study
This is a complete guide for HTML beginners. Learn how to use and execute different types of HTML Lists - Ordered, Unordered, Sorted, Nested, Horizontal &
(via HTML Lists - Ordered List & Unordered List, HTML Hindi Tutorial - Part 8 - Technical Programming)
HTML - LEKCIJA 3 (Liste)
Lista nam služe kada želimo nešto nabrojati te postoje brojčane, simboličke i definicijske liste.
BROJČANA LISTA
- elementi su označeni rednim brojem ili slovima, a za njihovu primjenu koristimo element <ol>, a za definiranje pojedinih elemenata liste koristimo element <li>.
npr.
<ol type="1" start="3">
<li> element 1</li>
<li> element 2</li>
<li> element 3</li>
</ol>
SIMBOLIČKA LISTA
- koristimo je kad želimo elemente označiti kružićem ili nekim drugim simbolom i pritom koristimo se elementom <ul>.
npr.
<ul type="square">
<li> element 1</li>
<li> element 2</li>
<li> element 3</li>
<li type="circle">element 4</li>
</ul>
DEFINICIJSKA LISTA
kod ove vrste liste svaki element sastoji se od dva podelementa: definicijskog izraza <dt> i same defincije <dl>
npr.
<dl>
<dt>element 1</dt>
<dd> opis elementa 1</dd>
<dt> element 2</dt>
<dd> opis elemnta 2</dd>
</dl>