Skip to content

Instantly share code, notes, and snippets.

@ozee
Created November 1, 2012 15:34
Show Gist options
  • Save ozee/3994362 to your computer and use it in GitHub Desktop.
Save ozee/3994362 to your computer and use it in GitHub Desktop.
HTML: Bootstrap - search form with toggles
<div class="row">
<div class="span2">
<div class="btn-group pull-right" data-toggle="buttons-radio">
<button class="btn active">All</button>
<button class="btn">Starred</button>
</div>
</div>
<div class="span4">
<form class="form-search">
<div class="input-append">
<input type="text" class="span2">
<button type="submit" class="btn">Search</button>
</div>
</form>
</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment