Hi, I was wondering if it is possible to place an HTML button within an anchor tag... like this: <a href="display.html"><input type=button name=display></a> TIA. kevin
Sure you can do it, but it probably won't do what you expect. If you want the button to trigger the traversal to display.html, you can use the onClick attribute of the input tag. hth, bear