back next

Grossary Lists


Grossary lists, sometimes called definition lists, are slightly different from other lists. Each list item in a glossary list has two parts:
- A term
- That term's definition
Each part of glossary list has its own tag:
<dt>    for the term "definition term"
<dd>    for its definition "definition definition"
The entire glossary list is indicated by the tags <dl>...</dl> (definition list)


Example
<html>
<head>
<title> HTML Tutor </title><head>
<body>
<dl>
<dt>GIF's Animation's
<dd>Draw each frame of an animation in a paint program you then save each image as a different frame. You then compile all the gif frames in a program and it forms 1 gif file.
<dt>Transparent Images or Colors
<dd>Using a program, you can assign one of the colors in your image to be transparent.
</dl> </p>
</body>
</html>



Output
result





Back to HTML tutor homepage | Back | Next | Email me