- The <dl> element defines a definition list
- It can contain dt and dd elements
- The <dt> element is used to specify each definition term
- The <dd> element is used to specify each definition data
<dl>
<dt>Client</dt>
<dd>A program which runs on some computer in a network</dd>
<dt>Server</dt>
<dd>A program or computer providing some kind of service to its clients</dd>
<dt>Surfing</dt>
<dd>To spend time browsing around the Web or the Internet</dd>
</dl>
Will be displayed something like this:
- Client
- A program which runs on some computer in a network
- Server
- A program or computer providing some kind of service to its clients
- Surfing
- To spend time browsing around the Web or the Internet