Description List
Description lists are used to group terms and their descriptions.
HTML also supports description lists.
A description list is a list of terms, with a description of each term.
- The
<dl></dl>
tag pair defines the description list. - The
<dt></dt>
tag pair defines the term (name). - The
<dd></dd>
tag pair describes each term.
<body>
<h2>Description List</h2>
<dl>
<dt>Web Page</dt>
<dd>
is a document commonly written in HTML that is accessible through the internet
or other network using a web browser.
</dd>
<dt>Website</dt>
<dd>
is a collection of related web pages, including multimedia content, typically
identified with a common domain name, and pulished on at least one web server.
</dd>
</dl>
</body>
Description List
- Web Page
- is a document commonly written in HTML that is accessible through the internet or other network using a web browser.
- Website
- is a collection of related web pages, including multimedia content, typically identified with a common domain name, and pulished on at least one web server.
Edit on GitHub
Last updated on