Bootstrap Tutorial - Create pills from UL








The following code shows how to create pills from UL.

Example

<!--from   w  w  w  .j  av a  2s.c o m-->
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
  href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet"
  href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<script
  src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script
  src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>

</head>
<body style='margin:30px'>
    <div class="container">
      <ul class="nav nav-pills">
      <li class="active"><a href="#">About</a></li>
      <li><a href="#">Activity</a></li>
      <li><a href="#">Liked Pages</a></li>
      </ul>
    </div>
</body>
</html>

Click to view the demo