Created
August 20, 2012 16:37
-
-
Save toddaeverett/3405621 to your computer and use it in GitHub Desktop.
Form Starter
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 id="" action="" method=""> | |
<fieldset> | |
<legend></legend> | |
<p><label for=""></label><br /> | |
<input type="text" name="" style="width:135px;" maxlength="35" /></p> | |
<p><input type="checkbox" name="" value="" /> <label for=""></label></p> | |
<p><label for=""></label><br /> | |
<select name=""> | |
<option></option> | |
<option value=""></option> | |
<option value=""></option> | |
<option value=""></option> | |
<option value=""></option> | |
<option value=""></option> | |
</select></p> | |
<p><label for=""></label><br /> | |
<input type="radio" name="" value="" /> <br /> | |
<input type="radio" name="" value="" /> <br /> | |
<input type="radio" name="" value="" /> </p> | |
<p><label for=""></label><br /> | |
<textarea name="" rows="3" style="width:135px;"></textarea></p> | |
</fieldset> | |
</form> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Basic form starter with common elements.