|

By Eddy R.
12-13-99
As a web builder, one is always looking for ways to make one's
site more appealing to the viewer's eyes. Well, here is something
you can do to add more life to your form(s).
Use an Image
That's right, instead of using the dull submit button in
your forms, use an image (as an input button) to make your form
look more interesting. Here is how.
Create a form and replace the HTML you would use to create a submit
button with the HTML below. If you need a refresher on how to create
forms, check out Creating
Forms first and then come back to continue.
<INPUT TYPE="image" SRC="your_image.gif" HEIGHT="20" WIDTH="100"
BORDER=0 ALT="Submit">
The SRC attribute is important for it is the HTML that calls the
image. Also, make sure that the URL for "your_image.gif"
has a well defined path - for example www.yoursite.com/image/your_image.gif.
Now, here is what your new and improved form would look like.
Try it, and give life to your forms.
|