Skip to content

Instantly share code, notes, and snippets.

@Ricardo-Diaz
Created November 2, 2012 23:09
Show Gist options
  • Save Ricardo-Diaz/4004909 to your computer and use it in GitHub Desktop.
Save Ricardo-Diaz/4004909 to your computer and use it in GitHub Desktop.
HTML: Search Box w/Multi options
// Search Form HTML
<section class="search">
<!--Creates a box that expands-->
<div class="open-search">
<span data-icon""></span>
</div>
<!-- search box with options to search different options -->
<div class="close-search">
<form>
<div>
<input type="search" class="search-field">
<input type="submit" value="Search" class="button search-button">
</div>
<div class="search-parts">
Search in:
<a href="#" class="active">All</a>
<a href="#">Forums</a>
<a href="#">Snippets</a>
<a href="#">Videos</a>
<a href="#">Manila</a>
</div>
</form>
</div>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment