web mail

hi
You could say that I'm new in web designing and that I don't understand html very well but I get around in dreamweaver (more/less)...
I have a webpage (www.leonsite.com) hosted here on jodohost (windows) and I would like to include a simple form on my page to check webmail directly from my homepage.
I'm really having hard time making it because I don't understand how this forms work...
Is there a simple solution (like to copy the code from somewhere) or if not, where can I learn how to do that?

Thanks
 
Sure, I can help. What do you need the form to do? All forms start with

<form> and end with </form>

There are several attributes to the <form> tag, so most of these tags look like

<form action="process.php" method="post">.
 
Back
Top