Toggle navigation
☰
Home
HTML
CSS
Scripting
Database
<!DOCTYPE html> <title>My Example</title> <p>Here's a basic definition list with <code>dfn</code> for a defining instance of a term:</p> <dl> <dt><dfn>Arahat</dfn></dt> <dd>The "Perfected One", who has overcome The Three Poisons of Desire, Hatred and Ignorance. </dd> <dt><dfn>Bodhi</dfn></dt> <dd>Awakened wisdom.</dd> <dt><dfn>Zen</dfn></dt> <dd>Meditative absorption in which all dualistic distinctions are eliminated.</dd> </dl> <hr> <p>The defintion term (<code>dt</code>) does not indicate that its contents are a term being defined. Therefore, this can be indicated with 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>