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, 1857🔥, 0💬
Popular Posts:
What properties and functions are supported on http.client.HTTPResponse objects? If you get an http....
How To Read the Entire File into a Single String in PHP? If you have a file, and you want to read th...
What Is session_register() in PHP? session_register() is old function that registers global variable...
How to include additional claims in Azure AD v2.0 id_tokens? If you want to include additional claim...
How To Read a File in Binary Mode in PHP? If you have a file that stores binary data, like an execut...