References

Collection of references for web development.

HTML dl tag

Description

The HTML <dl> element represents a description list.

Example

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