El atributo HTML <input> alt se usa para especificar el texto alternativo para una imagen cuando el atributo de imagen no se muestra . Brinda información alternativa para el usuario cuando la imagen no está cargada para mostrar.
Sintaxis:
<input alt="text">
Valores de atributo: contiene texto de valor único que se utiliza para especificar el texto alternativo para la entrada si la imagen no se muestra.
Ejemplo:
<!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= "https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" alt="Submit" width="48" height="48"> </body> </html>
Producción:
Navegadores compatibles:
- Google Chrome
- Firefox
- Borde
- Ópera
- safari de manzana
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA