Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

dl in html

<!--dl is short for description list and is a collection of dt+dd elements-->
<!--It can be used to implement a glossary-->
<p>Cryptids of Cornwall:</p>

<dl>
    <dt>Beast of Bodmin</dt>
    <dd>A large feline inhabiting Bodmin Moor.</dd>

    <dt>Morgawr</dt>
    <dd>A sea serpent.</dd>

    <dt>Owlman</dt>
    <dd>A giant owl-like creature.</dd>
</dl>
Source by developer.mozilla.org #
 
PREVIOUS NEXT
Tagged: #dl #html
ADD COMMENT
Topic
Name
6+9 =