HTML | <tipo de entrada=”archivo”>

El HTML <input type=”file”> se utiliza para especificar el campo de selección de archivos y agregar un botón para elegir un archivo para cargarlo en el formulario. 

Sintaxis:

<input type="file"> 

Ejemplo: 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML input type file
    </title>
     
    <style>
        h1 {
            color: green;
        }
        h3 {
            font-family: Impact;
        }
        body {
            text-align: center;
        }
    </style>
</head>
 
<body>
    <h1>
        GeeksforGeeks
    </h1>
     
    <h3>
        HTML <Input Type = "File">
    </h3>
 
    <input type="file" id="myFile">
     
    <p id="submit_text"></p>
</body>
 
</html>                   

Producción:

  

Navegadores compatibles: los navegadores compatibles con <input type=”file”> se enumeran a continuación:

  • Google Chrome 1.0 y superior
  • Borde 12 y superior
  • explorador de Internet
  • Firefox 1.0 y superior
  • Safari 1.0 y superior
  • Ópera 11.0 y superior

Publicación traducida automáticamente

Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *