Jayant, I have seen many sites using fancy form ‘Submit’ buttons
(font, color of button, etc.). How do I change the default form submit
buttons to those fancy ones?
- Anish Khanna

There are bascially two popular ways in which you can tweak the appearance of a submit button in an HTML form:

  1. You can use CSS attributes, or
  2. You can simply replace it with an image button.

The most popular and preferred way these days is to use CSS attributes.



This will appear as:

In the method 2, all you need to do is:


This will appear as something like:

(depending upon the image used)

Some other methods include creating buttons using Flash, Java Applets.

Leave a Reply