An HTML form with an image that represents the submit button.
alt | text | Specifies an alternate text for images (only for type="image") |
The alt
attribute provides an alternate text for the user, if he/she for some reason cannot view the image (because of slow connection, an error in the src attribute, or if the user uses a screen reader).
Note: The alt
attribute can only be used with <input type="image">
.
<input alt="text">
Value | Description |
---|---|
text | Specifies an alternate text for the image |
Example:
HTML
<form action="/action_page.php">
<label for="fname">First name:</label>
<input type="text" id="fname" name="fname">
<input type="image" src="https://horje.com/uploads/demo/2024-03-05-10-50-41-submit.gif" alt="Submit" width="48" height="48">
</form>
Type: | Html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |