HTML dl dt dd tag
HTML <dl> <dt> and <dd> tags are a kind of typesetting technique for web pages, which can produce indentation effects. The levels of <dl>, <dt> and <dd> tags are different, and the writing rules are < dd></dd> tags are contained in <dt></dt> tags, and <dt></dt> tags are contained in <dl></dl> tags, forming a complete list group, list Each item in has an item title and item description. Such typesetting skills are often used in HTML web page copywriting.
HTML dl dt dd tag basic syntax
<dt>Project title</dt>
<dd>Project description...</dd>
...
</dl>
label | definition |
<dl></dl> | Definition List |
<dt></dt> | Definition Term, item |
<dd></dd> | Definition Description |
HTML dl dt dd example
<dt>Project Title One</dt>
<dd>Here is Project Description One...</dd>
<dt>Project Title Two</dt>
<dd>Here is Project Description Two...< /dd>
</dl>
- Project Title One
- Here is the project description one...
- Project Title Two
- Here is the project description two...
Post a Comment
0 Comments