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 DL Tag/Element
What Is a DL Tag/Element? - XHTML 1.0 Tutorials - Understanding Lists and List Items
✍: FYICenter.com
A "dl" element is block level element that can be used to define a definition list, where items are displayed with leading terms. Here are basic rules about "dl" elements:
Below is a good tutorial example of "dl" 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>Definition Lists</title> </head> <body> <p>Acronyms:</p> <dl> <dt>CSS</dt><dd>Cascading Style Sheet</dd> <dt>DTD</dt><dd>Document Type Definition</dd> <dt>WWW</dt><dd>World Wide Web</dd> <dt>XML</dt><dd>eXtensible Markup Language</dd> </dl> </body> </html>
If you save the above document as definition_list.html, and view it with
Internet Explorer, you will see a list of items with leading terms
as shown below:

2007-05-11, 4859👍, 0💬
Popular Posts:
How Do I Run JUnit Tests from Command Window? To run JUnit tests from a command window, you need to ...
What will be printed as the result of the operation below: main() { int x=10, y=15; x = x++; y = ++y...
. How can a servlet refresh automatically if some new data has entered the database? You can use a c...
Can you explain the fundamentals of “GetGlobalResourceObject ”and “GetLocalResourceObject” function...
What Tools to Use to View HTML Documents? The basic tool you need to view HTML documents is any Web ...