Tools, FAQ, Tutorials:
HTML Ordered List 'ol' Tag/Element
What Is an "ol" Tag/Element?
✍: FYIcenter.com
An "ol" element is block level element that can be used to define
an ordered list, where items are displayed with leading sequential numbers.
Here are basic rules about "ol" elements:
Below is a good tutorial example of "ol" elements:
<?xml version="1.0" ?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html> <head> <title>Ordered Lists</title> </head> <body> <p>The most visited sites in 'Computers' category:</p> <ol> <li>Yahoo! - www.yahoo.com</li> <li>Google - www.google.com</li> <li>MSN - www.msn.com</li> </ol> </body> </html>
If you save the above document as ordered_list.html, and view it with Internet Explorer, you will see a list of items with leading sequential numbers as shown below:
2017-06-16, ∼2202🔥, 0💬
Popular Posts:
How To Read Data from Keyboard (Standard Input) in PHP? If you want to read data from the standard i...
How to use the Atom Online Validator at w3.org? w3.org feed validation service is provided at http:/...
How to use the RSS Online Validator at w3.org? You can follow this tutorial to learn how to use the ...
How to access Request body from "context.Request.Body" object in Azure API Policy? Request body is t...
Where to find tutorials on PHP language? I want to know how to learn PHP. Here is a large collection...