Horje

How to add HTML <input> alt Attribute

An HTML form with an image that represents the submit button.

alt text Specifies an alternate text for images (only for type="image")

Definition and Usage

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">.


Browser Support

Syntax

<input alt="text">

Attribute Values

Value Description
text Specifies an alternate text for the image
index.html
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> 

Output should be:

How to add HTML <input> alt Attribute




Type:
html
Category:
Web Tutorial
Sub Category:
HTML Tag
Uploaded by:
Admin