Bootstrap3 Tutorial

Bootstrap Intro

Download BS3

Bootstrap Layout

BS3 Grid System

BS3 Typography

Bootstrap3 Table

Bootstrap3 Images

BS3 Jumbotron

Bootstrap3 Well

Bootstrap3 Alert

Bootstrap3 Button

BS3 Button Group

BS3 Glyphicons

Bootstrap3 Badges

BS3 Progress Bar

BS3 Pagination

Bootstrap3 Pager

Bootstrap3 Panel

Bootstrap3 Collapse

BS3 Menu, Tabs, Pills

BS3 Navigation Bar

Bootstrap3 Carousel

Bootstrap3 Modal

Bootstrap3 Tooltip

Bootstrap3 Scrollspy

Bootstrap3 Affix

Bootstrap3 Templates

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>
HTML15 CSS10

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