The following code shows how to create Buttons Checkbox.
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap.min.css">
<link rel="stylesheet"
href="http://netdna.bootstrapcdn.com/bootstrap/3.0.3/css/bootstrap-theme.min.css">
<script type="text/javascript"
src="http://code.jquery.com/jquery.min.js"></script>
<style type="text/css">
.bs-example {<!-- w w w . ja v a 2s. co m-->
margin: 20px;
}
</style>
</head>
<body>
<div class="bs-example">
<div class="btn-group" data-toggle="buttons">
<label class="btn btn-primary">
<input type="checkbox">Option 1
</label>
<label class="btn btn-primary">
<input type="checkbox">Option 2
</label>
<label class="btn btn-primary">
<input type="checkbox">Option 3
</label>
</div>
</div>
</body>
</html>