sandie
11-13-2002, 02:17 PM
I would like to insert a hyperlink which will be a button.
I have a multi-page web site which begins on "Default.htm". In this default.htm, I would like to have about five(5) buttons which, when clicked, open(s) the relevant page(s). I have tried these:-
1.
<a href="describe.htm">
<input type="button" value="What is WITS!">
</a>
where "describe.htm" is the name of the page that has to open upon being clicked.
2.
<a href="members.htm">
<input type="button" value="Members of WITS"
name="members" onclick="members.htm">
</a>
where "members.htm" is the name of the page that has to open upon being clicked.
3.
<form method="GET" action="membes.htm">
<a href="members.htm">
<input type="button" value="Members of WITS"
name="members" onclick="members.htm">
</a>
</form>
where "members.htm" is the name of the page that has to open upon being clicked.
All of these were on the "default.htm" page.
Any help will be very much appreciated.
I have a multi-page web site which begins on "Default.htm". In this default.htm, I would like to have about five(5) buttons which, when clicked, open(s) the relevant page(s). I have tried these:-
1.
<a href="describe.htm">
<input type="button" value="What is WITS!">
</a>
where "describe.htm" is the name of the page that has to open upon being clicked.
2.
<a href="members.htm">
<input type="button" value="Members of WITS"
name="members" onclick="members.htm">
</a>
where "members.htm" is the name of the page that has to open upon being clicked.
3.
<form method="GET" action="membes.htm">
<a href="members.htm">
<input type="button" value="Members of WITS"
name="members" onclick="members.htm">
</a>
</form>
where "members.htm" is the name of the page that has to open upon being clicked.
All of these were on the "default.htm" page.
Any help will be very much appreciated.