WEEK: 5
Active: Not Currently Active
Work Due:

The Image Button

You can use an image for a submit button. Use the type="image".

NOTE: This element will then need to follow good image use practice. This means it should include the alt, width, and height attributes following the src attribute.

<form action="http://www.example.org/subscribe.php">
    <p>Subscribe to our email list:</p>
    <input type="text" name="email" />
    <input type="image" src="images/subscribe.jpg" alt="subscribe button image" width="100" height="20" />
</form>

Subscribe to our email list:


Previous section:
Next section: