Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <p>Here's a definition list that contains multiple terms for a single definition:</p> <dl> <dt>Vocals</dt> <dt>Rhythm Guitar</dt> <dd>Big Mama Lee</dd> <dt>Drums</dt> <dd>Bulldog Jones</dd> <dt>Lead Guitar</dt> <dt>Keyboards</dt> <dd>Scarcat Fraser</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>, <a href="/html/tags/html_dfn_tag.cfm"><code>dfn</code></a>.</p>