Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <p>Here's a nested definition list:</p> <dl> <dt><dfn>PC</dfn></dt> <dd>This has different meanings depending on the context <dl> <dt>Computer Science</dt> <dd>Personal Computer</dd> <dt>Social Sciences</dt> <dd>Political Correctness</dd> <dt>Role playing games or video games</dt> <dd>Player Character</dd> </dl> </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>