Skip to content

Instantly share code, notes, and snippets.

@smileyj68
Created June 19, 2012 06:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save smileyj68/2952683 to your computer and use it in GitHub Desktop.
Save smileyj68/2952683 to your computer and use it in GitHub Desktop.
Foundation 3 Simple Form
<form>
<label>This is a label.</label>
<input type="text" placeholder="Standard Input" />
<label>Address</label>
<input type="text" class="twelve" placeholder="Street" />
<div class="row">
<div class="six columns">
<input type="text" placeholder="City" />
</div>
<div class="three columns">
<input type="text" placeholder="State" />
</div>
<div class="three columns">
<input type="text" placeholder="ZIP" />
</div>
</div>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment