Hello All,
I'm creating my contact form and when I view it the input boxes aren't aligning. Does anyone have any suggestions for a fix?
Here is the code:
<form name="eMail" method="post" action="emailform.asp">
<BR>
<BR>
Email: <input type="text" name="Sample Text Field1" value=""><BR>
Name: <input type="text" name="Sample Text Field2" value=""><BR>
Subject: <input type="text" name="R.Sample Text Field3" value=""><BR>
<BR>
<BR>
Your Feedback: <textarea name="Sample Text Area" rows="8" cols="65"></textarea>
<BR>
<BR>
<input type="submit" name="submit" value="submit">
<input type="hidden" name="email_From" value="Cory@********">
<input type="hidden" name="email_To" value="Cory@*********">
<input type="hidden" name="email_Subject" value="Contact Form Submission">
<input type="hidden" name="email_ThankYou" value="Thank you for submitting your request.">
<input type="hidden" name="email_Redirect" value="">
<br /><br />Please enter the following code into the box provided:<br />$(Verification_Image)<br /><input type="text" name="Verification_Code" /></form>
Thank you,
Cory
35 kph
Lambo,
Thanks for the quick reply.
Cory
Could you try this?:
<form name="eMail" method="post" action="emailform.asp">
<div>
<label for="email">Email</label>
<input name="email" id="email">
</div>
<div>
<label for="name">Name</label>
<input name="name" id="name">
</div>
<div>
<label for="subject">Subject</label>
<input name="subject" id="subject">
</div>
<div>
<label for="feedback">Your feedback</label>
<textarea name="feedback" rows="8" cols="65"></textarea>
</div>
<input type="submit" name="submit" value="submit">
<input type="hidden" name="email_From" value="Cory@********">
<input type="hidden" name="email_To" value="Cory@*********">
<input type="hidden" name="email_Subject" value="Contact Form Submission">
<input type="hidden" name="email_ThankYou" value="Thank you for submitting your request.">
<input type="hidden" name="email_Redirect" value="">
<p>Please enter the following code into the box provided:</p>
<label for="verification">$(Verification image)
<input name="Verification_Code" />
</form>
Book links provided by Amazon.com affiliate program. Sponsored ads/links are not endorsements or recommendations from MJ DeMarco and/or Viperion Corporation.
There are currently 1 users browsing this thread. (0 members and 1 guests)