Bootstrap Tutorial - Create navigation list








The following code shows how to create navigation list.

Example

<!-- w  ww. ja  v  a  2  s  . c  o  m-->
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css"
  href="http://netdna.bootstrapcdn.com/twitter-bootstrap/2.3.2/css/bootstrap-combined.min.css">
<style type='text/css'>
.well {
  padding: 9px 0;
}
</style>
</head>
<body>
  <div class="well">
    <ul class="nav nav-list">
      <li><a href="#">Link 1</a></li>
      <li><a href="#">Link 2</a></li>
    </ul>
  </div>
</body>
</html>

Click to view the demo