Created
September 26, 2011 00:13
-
-
Save pdehaan/1241352 to your computer and use it in GitHub Desktop.
Twitter Bootstrap "label" example.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> — This is the default label.</li> | |
<li><span class="label success">success</span> — This is the <code>success</code> label.</li> | |
<li><span class="label warning">warning</span> — This is the <code>warning</code> label.</li> | |
<li><span class="label important">important</span> — This is the <code>important</code> label.</li> | |
<li><span class="label notice">notice</span> — 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