Skip to content

Instantly share code, notes, and snippets.

@tilomitra
Last active December 10, 2015 14:28
Show Gist options
  • Save tilomitra/4447700 to your computer and use it in GitHub Desktop.
Save tilomitra/4447700 to your computer and use it in GitHub Desktop.
Default Form
<form>
<fieldset>
<legend>Legend</legend>
<label>First Name</label>
<input type="text">
<label>Last Name</label>
<input type="text">
<label>E-Mail</label>
<input type="email" required>
<aside class="yui3-help-inline">This is a required field.</aside>
<label>City</label>
<input type="text">
<label>State</label>
<select class="yui3-input-medium">
<option>AL</option>
<option>CA</option>
<option>IL</option>
<option>MD</option>
<option>NY</option>
</select>
<label class="yui3-checkbox">
<input type="checkbox"> I've read the terms and conditions
</label>
<button type="submit" class="yui3-button notice">Submit</button>
</fieldset>
</form>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment