Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <p>Here's a definition list that contains multiple definitions for each definition term:</p> <dl> <dt>Vocals</dt> <dd>Big Mama Lee</dd> <dd>Ee-aw Parker</dd> <dt>Guitar</dt> <dd>Scarcat Fraser</dd> <dd>Big Tab</dd> <dt>Drums</dt> <dd>Bulldog Jones</dd> </dl> <hr> <p>Note that the defintion term (<code>dt</code>) does not indicate that its contents are a term being defined, but this can be indicated using the <code>dfn</code> element.</p> <p>More info: <a href="/html/tags/html_dl_tag.cfm"><code>dl</code></a>, <a href="/html/tags/html_dt_tag.cfm"><code>dt</code></a>, <a href="/html/tags/html_dd_tag.cfm"><code>dd</code></a>.</p>