Categories:
.NET (357)
C (330)
C++ (183)
CSS (84)
DBA (2)
General (7)
HTML (4)
Java (574)
JavaScript (106)
JSP (66)
Oracle (114)
Perl (46)
Perl (1)
PHP (1)
PL/SQL (1)
RSS (51)
Software QA (13)
SQL Server (1)
Windows (1)
XHTML (173)
Other Resources:
What Is an OL Tag/Element
What Is an OL Tag/Element? - XHTML 1.0 Tutorials - Understanding Lists and List Items
✍: 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:

2007-05-12, 5094👍, 0💬
Popular Posts:
How To Add Column Headers to a Table? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells I...
Are risk constant through out the project ? * Never say that risk is high through out the project. R...
How To Create Nested Tables? - XHTML 1.0 Tutorials - Understanding Tables and Table Cells You can cr...
Do You Know the Book "JUnit in Action"? You should know this book. It received some good reviews. Ti...
Managed Code and Unmanaged Code related ASP.NET - How do you hide Public .NET Classes and other publ...