El atributo HTML <input> src se utiliza para especificar la URL de la imagen que se utilizará como botón de envío. Este atributo solo se puede usar con <input type=”image”> .
Sintaxis:
<input src="URL">
Valores de atributo: contiene una URL de valor único que especifica el enlace de la imagen de origen. Hay dos tipos de enlaces URL que se enumeran a continuación:
- URL absoluta: Apunta a otra página web.
- URL relativa: Apunta a otros archivos de la misma página web.
Ejemplo:
html
<!DOCTYPE html> <html> <head> <title> HTML Input src Attribute </title> </head> <body style="text-align:center;"> <h1 style="color:green;"> GeeksForGeeks </h1> <h2>HTML Input src Attribute</h2> <form> <input id="myImage" type="image" src= "https://media.geeksforgeeks.org/wp-content/uploads/gfg-40.png" alt="Submit" width="70" height="48" /> </form> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con HTML <input> src Attribute se enumeran a continuación:
- Google Chrome 1.0
- Internet Explorer 2.0
- Firefox 1.0
- Apple Safari 1.0
- Ópera 1.0
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA