Code for submitting a simple contact form to my email
I am a semi-luddite in regard to code, however I have managed to successfully build a site in html (yes, I was told no one does that anymore). I have a contact page that asks for Name, Address, and Comment. I don't know how to get it to send the information to me. I worry that my email will be exposed to spammers and don't know enough about how to prevent that. I have been doing research, but my eyes begin to cross when reading coding instructions on sites, and I just don't understand it. Can someone either point me in the direction of clear instructions for newbies, or actually give me the code that I can put in my document? I used DW's form feature to make the three text boxes. In fact, I'll add the code below if that would be helpful. Thank you so much in advance for your help.
Catherine
<label for="name"><strong>Name:</strong></label>
<input name="name" type="text" id="name" size="80">
</p>
<p>
<label for="email" style="font-weight: bold; font-size: 24px;">Email:</label>
<input name="email" type="email" id="email" size="80" maxlength="80">
</p>
<p>
<label for="comments">Comments or Questions:<br>
</label>
<textarea name="comments" cols="90" rows=15 wrap id="comments"></textarea>
</p>
<p>
<input type="submit" name="submit" id="submit" value="Submit">
<input type="reset" name="reset" id="reset" value="Reset">
(My website is live: http://www.catherinecampaigne.com/contact.html)
