Code for buttons

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need some help. I've seen various examples of code in memos posted in this
discussion group relating to previous page buttons. I understand the code
and have incorporated it into my site.

Could someone please give me an example of code which would create a button
that I could label. I want to link to another page on the site when they
click on the button.

Hover buttons don't work. So I'm not sure how to create a button except
through the examples I've mentioned above. I know the <a href... code. I
just don't know the syntax for putting the
<button type= and the <a href... code together. Or am I completely off base?

Thanks...Linda
 
If using FP 2003 use the new Interactive Buttons (Insert Interactive Button)
If not either
- Create an image (in a graphics editor w/ your text in it) and link the image to your page
- Or paste the below in your page to use a button to go to Yourpage.htm

<form action="Yourpage.htm">
<input type="submit" value="Your Text to show Here">
</form>

--




|I need some help. I've seen various examples of code in memos posted in this
| discussion group relating to previous page buttons. I understand the code
| and have incorporated it into my site.
|
| Could someone please give me an example of code which would create a button
| that I could label. I want to link to another page on the site when they
| click on the button.
|
| Hover buttons don't work. So I'm not sure how to create a button except
| through the examples I've mentioned above. I know the <a href... code. I
| just don't know the syntax for putting the
| <button type= and the <a href... code together. Or am I completely off base?
|
| Thanks...Linda
 
Back
Top