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 a UL Tag/Element
What Is a UL Tag/Element? - XHTML 1.0 Tutorials - Understanding Lists and List Items
✍: FYICenter.com
A "ul" element is block level element that can be used to define an un-ordered list, where items are displayed with leading bullets. Here are basic rules about "ul" elements:
Below is a good tutorial example of "ul" 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>Un-ordered Lists</title> </head> <body> <p>Random quotations:</p> <ul> <li>The best advice is this: Don't take advice and don't give advice.</li> <li>Attitude is a little thing that makes a big difference.</li> <li>When dealing with people, remember you are not dealing with creatures of logic, but creatures of emotion.</li> </ul> </body> </html>
If you save the above document as unordered_list.html, and view it with
Internet Explorer, you will see a list of items with leading bullets
as shown below:
2007-05-11, 5034👍, 0💬
Popular Posts:
How To Enter a New Row into a Table Interactively? - Oracle DBA FAQ - Introduction to Oracle SQL Dev...
What is test metrics? Test metrics accomplish in analyzing the current level of maturity in testing ...
How can method defined in multiple base classes with same name be invoked from derived class simulta...
.NET INTERVIEW QUESTIONS - What is the difference between thread and process? A thread is a path of ...
How To Assign Debug Privileges to a User? - Oracle DBA FAQ - Introduction to Oracle SQL Developer In...