Bootstrap description list example
A simple example of using the description list example.
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0">
<meta name="description" content="Bootstrap example for Tizen"/>
<title>Bootstrap example for Tizen</title>
<link rel="stylesheet" href="css/bootstrap.min.css">
<script src="js/jquery-2.1.4.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</head>
<body>
<div class="container">
<p>A description list example</p>
<dl>
<dt>F-16</dt>
<dd>- F-16 Fighting Falcon</dd>
<dt>A-10</dt>
<dd>- A-10/OA-10 Thunderbolt II</dd>
<dt>AWACS</dt>
<dd>- Airborne Warning and Control System</dd>
</dl>
</div>
<script>
</script>
</body>
</html>