Last active
December 10, 2015 14:28
-
-
Save tilomitra/4447700 to your computer and use it in GitHub Desktop.
Default Form
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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