Style Ordered Lists with Bootstrap
Ordered Lists
A list of items in which the order does explicitly matter.
<!DOCTYPE HTML>
<html>
<head>
<link href="http://java2s.com/style/bootstrap.min.css" rel="stylesheet">
</head><!-- w ww. j av a 2s .com-->
<body style='margin:20px;'>
<ol>
<li>Java</li>
<li>CSS</li>
<li>HTML</li>
<li>Bootstrap</li>
<li>HTML5</li>
<li>CSS3</li>
</ol>
</body>
</html>