Bootstrap Badges
Badges are numerical indicator that represents, how many items are associated with a link. Badges can also be used to highlight new or unread items. To create badges use the ".badge" class within a <span> element.
<a href="#">HTML<span class="badge">15</span></a> <a href="#">CSS<span class="badge">10</span></a>
Badges can also be used within a button element.
<button class="btn btn-success">HTML <span class="badge">15</span> </button> <button class="btn btn-success">CSS <span class="badge">10</span> </button>
Bootstrap Labels
Labels are used to provide some additional information. The following example shows all label contextual classes.
<h1>Heading1 <span class="label label-default">New</span></h1> <h3>Heading3 <span class="label label-default">New</span></h3>
<span class="label label-default">Default Label</span> <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>Default Label Primary Label Success Label Info Label Warning Label Danger Label