to home page

BWRS
SEARCH

HOMETUTORIALSLINKSFORUMGLOSSARYNEWS
 

COOL TIPS >
LINK BUTTON    

How To Create link buttons without graphics

Using the <form> tags you can create simple link buttons like these

Here's how to create a button to this site.
(Frontpage express users might want to visit their forms page where this button is used as a teaching example)

The areas in red indicate areas for change

<form action="http://www.fluffbucket.com/" method="GET">
<input type="submit" name="anything" value="Basic Web Resource Site">
</form>

Here it is for cutting and pasting

<form action="http://www.fluffbucket.com" method="GET">
<input type="submit" name="anything" value="Basic Web Resource Site">
</form>

(composer and frontpage express users should use add HTML functions for this)

back to Index
BACK TO INDEX
Back to top