Open In App

HTML | <input> alt Attribute

Improve
Improve
Like Article
Like
Save
Share
Report

The HTML <input> alt Attribute is used to specify the alternative text for an image when the image attribute is not displayed. It gives alternative information for the user when the image is not loaded to display. 

Syntax:

<input alt="text">

Attribute Values: It contains single value text which is used to specify the alternative text for input if the image is not displaying. 

Example: 

html




<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Input alt Attribute
    </title>
</head>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>HTML Input alt Attribute</h2>
    <input id="myImage"
           type="image"
           src=
           alt="Submit"
           width="48"
           height="48">
</body>
 
</html>


Output:

  

Supported Browsers:

  • Google Chrome 1 and above
  • Firefox 1 and above
  • Internet Explorer 5.5 and above
  • Edge 12 and above
  • Opera 12.1 and above
  • Apple Safari 1 and above

Last Updated : 12 Aug, 2022
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads