BootstrapBadges and Labels
Badges
Badges are numerical indicators of how many items are associated with a link:
News5Comments10
Updates2
The numbers (5, 10, and 2) are the badges.
Use the.badge class within<span> elements to create badges:
Example
<a href="#">Comments <span class="badge">10</span></a><br>
<a href="#">Updates <span class="badge">2</span></a>
Badges can also be used inside other elements, such as buttons:
The following example shows how to add badges to buttons:
Example
Labels
Labels are used to provide additional information about something:
ExampleNew
ExampleNew
ExampleNew
ExampleNew
ExampleNew
ExampleNew
Use the.label class, followed by one of the six contextual classes.label-default,.label-primary,.label-success,.label-info,.label-warning or.label-danger, within a<span> element to create a label:
Example
<h2>Example <span class="label label-default">New</span></h2>
<h3>Example <span class="label label-default">New</span></h3>
<h4>Example <span class="label label-default">New</span></h4>
<h5>Example <span class="label label-default">New</span></h5>
<h6>Example <span class="label label-default">New</span></h6>
The following example shows all contextual label classes:
Example
<span class="label label-primary">Primary Label</span>
<span class="label label-success">Success Label</span>
<span class="label label-info">Info Label</span>
<span class="label label-warning">Warning Label</span>
<span class="label label-danger">Danger Label</span>

