Skip to content

Instantly share code, notes, and snippets.

@toddaeverett
Created August 20, 2012 16:37
Show Gist options
  • Save toddaeverett/3405621 to your computer and use it in GitHub Desktop.
Save toddaeverett/3405621 to your computer and use it in GitHub Desktop.
Form Starter
<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>
@toddaeverett
Copy link
Author

Basic form starter with common elements.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment