by prettyscripts on 2007-12-05 00:47:44 • Leave a comment »
i always forget the syntax for <dl>, <dt> and <dd> tags, even though it’s obvious – list, terms and definition / description.
here’s the correct syntax:
Code:
<dl> | |
<dt>the term</dt> | |
<dd>description</dd> | |
</dl> |