Style definition list using Bootstrap
Description
A list of terms with their associated descriptions.
Example
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!--from w w w.j a va 2 s . co m-->
<body style='margin:20px;'>
<dl>
<dt>HTML</dt>
<dd>Web page mark up language.</dd>
</dl>
</body>
</html>