References

Collection of references for web development.

HTML dt tag

Description

The HTML <dt> element is used to describe a term in a description list.

Example

<dl>
	<dt>Burger and Fries</dt>
	<dd>Hot food</dd>
	<dt>Coca Cola</dt>
	<dd>Cold soda drink</dd>
</dl>