Forms


Here is a tutorial on making forms. But making forms by HTML is easy but I mostly recommend going to Wufoo or Freedback. But you can use HTML forms if you like. Here is the category in making a form:
Single text line
Big text line
Upload image bar
Radio Buttons
Checkboxes
Submit Buttons
Reset Buttons

I will put the code and the name of the code and you can just pick out. Here they are:

Single Text Line: Your Name:

<input type="text" name="Name" size="35">
Big Text Line: Comments:
<textarea name="Comments" rows="10" cols="40"></textarea>
Upload Image Bar: <input type="file" name="imagefile" class="form">
Radio Buttons: <form> <input type="radio" name="Type" value="Affiliate"> Example 1<br> <input type="radio" name="Type" value="Partner"> Example 2 </form>
Checkboxes: <form> <input type="checkbox" name="Site Theme" value="Graphics"> Graphics<br> <input type="checkbox" name="Site Theme" value="Neopets"> Neopets<br> <input type="checkbox" name="Site Theme" value="Tutorials"> Tutorials<br> <input type="checkbox" name="Site Theme" value="Resources"> Resources<br> </form>
Submit Buttons: <input type="submit" value="submit">
Reset Buttons: <input type="reset" value="reset">

Those are the codes, hope it helped. If you need help got any questions email us at admin.clgraphics@gmail.com. See ya!

Mikki~