You have to first create a <form> tag, and inside the form tags have the radio-buttons and text-fields, and also inside the form tag you have the submit button.
Now in the <form> tag, you add this: (to email the form)
<form name="form1" method="post" action=mailto:"youremail@address.here?subject=Information.">
This what the code does: 'form name' is the name of the form, the 'method' is post (need not worry about that), the 'action' is the email address that the form will be mailed to, ...?subject=Information. just means that in the 'subject line' of your email the phrase
'Information' will be seen...
Hope this helps...
NOTE: using this tech. will email the form but all in an concontanation way. if you want the form sbmitted in a clear manner, you need to use .CGI or a .PHP script...
I have not failed; I merely found 100,000 different ways of not succeding...