<html>
<head>
<style>
/* Default CSS Values */
dt {
display: block;
}
</style>
</head>
<body>
<p>A dt element is displayed like this:</p>
<dl>
<dt>Coffee</dt>
<dd>Black hot drink</dd>
<dt>Milk</dt>
<dd>White cold drink</dd>
</dl>
<p>A customized dt element (changed display):</p>
<dl>
<dt style="display:none;">Coffee</dt>
<dd>Black hot drink</dd>
<dt style="display:none;">Milk</dt>
<dd>White cold drink</dd>
</dl>
</body>
</html>