Please can you help

Discussion in 'HTML & Website Design' started by benjii, May 12, 2011.

  1. #1
    I have been searching for html code for opt in email contact form and i just cannot get them to work.
    Can someone please send me a contact form in html code so i can submit it in html code in my site when i get one.

    name
    address
    post code
    country
    telephone
    email
    submit button

    All the above in html code with css to make it look cool, and how do i get it to submit to my email address

    Thanks in advance
     
    benjii, May 12, 2011 IP
  2. TechieBrad

    TechieBrad Guest

    Messages:
    31
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    There are websites for this. Google it. hotscripts . com
     
    TechieBrad, May 12, 2011 IP
  3. 7thand43rd

    7thand43rd Member

    Messages:
    84
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    43
    #3
    No one is going to write it up for you and make it look "cool" too. What your asking for is a basic HTML thing and can be done (no recommended) with tables.

    Another option is using contact forms that are hosted by other websites, they are easy to build with no HTML knowledge needed.
     
    7thand43rd, May 12, 2011 IP
  4. GasArts.com

    GasArts.com Peon

    Messages:
    18
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Well, benji .. I think you need a whole contact form to be well styled, and also to work and send emails.
    if what I got is right then it's not just html. you will need html, and css for positioning, and styling your form. But a form which looks cool will not send any emails unless you use PHP script to send emails. Styling a form is not a big deal but you should use good PHP script to send emails. I recommend PHP Mailer. It's free to use.
     
    GasArts.com, May 12, 2011 IP
  5. benjii

    benjii Peon

    Messages:
    83
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Thanks guys, gasarts i will take a look at that PHP Mailer thankyou.
     
    benjii, May 13, 2011 IP
  6. sudhisinha

    sudhisinha Peon

    Messages:
    61
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    <html>
    <head>
    </head>
    <body>
    <table>
    <tr><td>Name</td><td><input type="text" name ="text"/></td></tr><tr><td>Address</td><td><input type="texarea" name ="address"/></td></tr><tr><td>Post code</td><td><input type="text" name ="postcode"/></td></tr><tr><td>country</td><td><input type="text" name ="telephone"/></td></tr><tr><td>email</td><td><input type="text" name ="email"/></td></tr><tr><td colspan="2" align="right"><input type="submit" name ="submit" /></td></tr>
    </table>
    </body>
    </html>
     
    sudhisinha, Aug 27, 2011 IP
  7. benjii

    benjii Peon

    Messages:
    83
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Thank you sudhisinha, i will try it :)
     
    benjii, Aug 27, 2011 IP
  8. shmerns

    shmerns Peon

    Messages:
    38
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    You are going to need an autoresponder system to collect your list. Try doing a search for "autoresponders" and you will
    get many good ones. Then sign up and build your form, it will give you the code called "raw html" all you need to do is copy
    and paste that form. It will give you the code for the EXACT form you've built. It's very easy, try it. I hope this helps :)
     
    shmerns, Aug 27, 2011 IP
  9. babar.mangi

    babar.mangi Peon

    Messages:
    4
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #9
    here is full form

    <form action="contact.php" method="post">

    Name :
    <input type="text" name="name"><br/><br/>

    Address :
    <input type="text" name="address"><br/><br/>

    Post code :
    <input type="text" name="post code"><br/><br/>

    Country :
    <input type="text" name="country"><br/><br/>

    Telephone :
    <input type="text" name="telephone"><br/><br/>

    E-mail :
    <input type="text" name="e-mail"><br/><br/>

    <input type="submit" value="Submit">


    </form>

    i hope this will help you
     
    babar.mangi, Aug 27, 2011 IP