Skip to content

Instantly share code, notes, and snippets.

@pdehaan
Created September 26, 2011 00:13
Show Gist options
  • Save pdehaan/1241352 to your computer and use it in GitHub Desktop.
Save pdehaan/1241352 to your computer and use it in GitHub Desktop.
Twitter Bootstrap "label" example.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8"/>
<title>Twitter Bootstrap "label" example</title>
<link href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css" rel="stylesheet" />
<style type="text/css">
body {
padding: 40px;
}
</style>
</head>
<body>
<h1>Twitter Bootstrap "label" example</h1>
<ul class="unstyled">
<li><span class="label">default</span> &mdash; This is the default label.</li>
<li><span class="label success">success</span> &mdash; This is the <code>success</code> label.</li>
<li><span class="label warning">warning</span> &mdash; This is the <code>warning</code> label.</li>
<li><span class="label important">important</span> &mdash; This is the <code>important</code> label.</li>
<li><span class="label notice">notice</span> &mdash; This is the <code>notice</code> label.</li>
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment