Reverse order numbered list in html?
With HTML, you can make a numbered list by doing the following:
< OL >
< LI >apples
< LI >bananas
< LI >cranberries
< LI >oranges
< /OL >
Which appears like this:
- apples
- bananas
- cranberries
- oranges
But is there a numbered list in HTML where the numbers go in reverse order? Starting with the biggest number first and ending with 1?