Need help adding a contact page to my website

November 18th, 2022

Hi,
My website is www.greenerinnovationsmn.com
I have a contact page but I want to add insert fields where the user can type there information on the website and click a send button and their info will be sent to my inbox.
How do I add that?
I want like,
Name:
Email:
Message:
[Send]
—–
I built the site using dreamweaver and a template and I do not know how to code that.
Thanks! Smile

Answer #1
Original files would help..but,
I think I know what u mean… Will send ya a preview..
ED: Well looks as if wbb has stuffed up again... I had already posted a fair bit on the subject .
Looks as if its been deleted somehow..
And I`m not going to post it again… (contact wbb about delteded posts)
Answer #2
<!DOCTYPE html>
<html>
<body>
<h3>Send e-mail to someone@example.com:</h3>
<form action="MAILTO:someone@example.com" method="post" enctype="text/plain">
Name:<br>
<input type="text" name="name" value="your name"><br>
E-mail:<br>
<input type="text" name="mail" value="your email"><br>
Comment:<br>
<input type="text" name="comment" value="your comment" size="50"><br><br>
<input type="submit" value="Send">
<input type="reset" value="Reset">
</form>
</body>
</html>

Example thanks to w3schools. I looked at the page source and noticed that your site was a simple html one and not Joomla / WP etc. This forms solution should work for you.

 

| Sitemap |