Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Electronic Submission Form Problem 1

Status
Not open for further replies.

bsquared18

Technical User
Jun 10, 2001
329
US
I'm developing an electronic submission form. When I entered a return-to-home-page action at the top of the page, all the lines on the form below it became active. In other words, clicking on any of the words on the page takes you to the home page.

How can I keep the return-to-home-page action at the top of the page without having it affect the rest of the page? The relevant code is:

<body>

<form><A HREF=&quot;index.html&quot;><font face=&quot;arial&quot; color=&quot;#000000&quot; size=&quot;3&quot;>Click here to Return to Home Page</font></form>

<FORM METHOD=&quot;POST&quot; ACTION=&quot;mailto:myemailaddress&quot;>

<font face=&quot;arial&quot; color=&quot;#7c0019&quot; size=&quot;3&quot;><strong><font size=&quot;5&quot;>Order Form</font></strong>
<br>
Your Last Name:      <INPUT TYPE=&quot;text&quot; NAME=&quot;LAST NAME&quot; SIZE=&quot;50&quot;>

(and so forth)

</form>
</body>


I've tried putting the return-to-home-page code in various places, but nothing seems to solve the problem.

Thanks for your help!

Bill B.
 
You create a hyperlink that you never close with &quot;</a>&quot;. Note the &quot;</form>&quot; should actually read &quot;</a>&quot;...

<body>

<form><A HREF=&quot;index.html&quot;><font face=&quot;arial&quot; color=&quot;#000000&quot; size=&quot;3&quot;>Click here to Return to Home Page</font></form>

<FORM METHOD=&quot;POST&quot; ACTION=&quot;mailto:myemailaddress&quot;>

<font face=&quot;arial&quot; color=&quot;#7c0019&quot; size=&quot;3&quot;><strong><font size=&quot;5&quot;>Order Form</font></strong>
<br>
Your Last Name: <INPUT TYPE=&quot;text&quot; NAME=&quot;LAST NAME&quot; SIZE=&quot;50&quot;>

(and so forth)

</form>
</body>
Get the Best Answers! faq333-2924
Merry Christmas!
mikewolf@tst-us.com
[angel][santa][elf][reindeer][santa2]
 
Thanks for the quick response, Mike! It looks so easy when you know what you're doing!

Bill B.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top