Skip to content

Instantly share code, notes, and snippets.

@oakley808
Created May 18, 2016 17:50
Show Gist options
  • Save oakley808/829612a88c290d91fa338c607d811117 to your computer and use it in GitHub Desktop.
Save oakley808/829612a88c290d91fa338c607d811117 to your computer and use it in GitHub Desktop.
Basic Buttons
<button type="submit" class="btn btn-default">Default</button>
<button type="submit" class="btn btn-primary">Primary</button>
<button type="submit" class="btn btn-success">Success</button>
<button type="submit" class="btn btn-info">Info</button>
<button type="submit" class="btn btn-warning">Warning</button>
<button type="submit" class="btn btn-danger">Danger</button>
<button type="submit" class="btn btn-link">Link</button>
<a href="" class="btn btn-default">Default</a>
<a href="" class="btn btn-primary">Primary</a>
<a href="" class="btn btn-success">Success</a>
<a href="" class="btn btn-info">Info</a>
<a href="" class="btn btn-warning">Warning</a>
<a href="" class="btn btn-danger">Danger</a>
<a href="" class="btn btn-link">Link</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment