What is ordered and unordered list?enlighten me plz.... | Sololearn: Learn to code for FREE!
Novo curso! Todo programador deveria aprender IA generativa!
Experimente uma aula grƔtis
- 1

What is ordered and unordered list?enlighten me plz....

4th Sep 2017, 12:06 PM
sheikhrafe
2 Respostas
+ 4
anĀ <ol>represents a sequence, whereasĀ <ul>represents a set. Rearranging the items in an ordered list changes the list's meaning. Rearranging them in an unordered list does not. This is a good rule-of-thumb for which type of list to use. If changing the order of the items makes the list incorrect, you want to useĀ <ol>. If the order doesn't matter, useĀ <ul>. for more refer this link http://webdesy.com/html-list/
4th Sep 2017, 12:11 PM
GAWEN STEASY
GAWEN STEASY - avatar
+ 2
ordered list example: 1. item 1 2. item 2 3. item 3 and unordered list example: ā€¢ item 1 ā€¢ item 2 ā€¢ item 3
4th Sep 2017, 12:13 PM
CalviÕ²
CalviÕ² - avatar