Categories:
.NET (961)
C (387)
C++ (185)
CSS (84)
DBA (8)
General (31)
HTML (48)
Java (641)
JavaScript (220)
JSP (109)
JUnit (31)
MySQL (297)
Networking (10)
Oracle (562)
Perl (48)
Perl (9)
PHP (259)
PL/SQL (140)
RSS (51)
Software QA (28)
SQL Server (5)
Struts (20)
Unix (2)
Windows (3)
XHTML (199)
XML (59)
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, 4598👍, 0💬
Popular Posts:
What are urlencode() and urldecode() functions in PHP? string urlencode(str) - Returns the URL encod...
How can you write a loop indefinitely? Two examples are listed in the following code: for(;;) { ... ...
Where are all .NET Collection classes located ? System.Collection namespace has all the collection c...
What Is the Difference between Formal Parameters and Actual Parameters? - Oracle DBA FAQ - Creating ...
When should the method invokeLater() be used? This method is used to ensure that Swing components ar...