HTML | <tipo de entrada=”restablecer”>

El HTML <input type=”reset”> se utiliza para definir un botón de reinicio . El botón de reinicio se utiliza para restablecer todos los valores del formulario a sus valores iniciales. 

Sintaxis: 

<input type="reset">> 

Ejemplo: 

HTML

<!DOCTYPE html>
<html>
 
<head>
    <title>
        HTML Input Type reset
    </title>
</head>
<style>
    #Geek_p {
        font-size: 30px;
        color: green;
    }
</style>
 
<body style="text-align:center;">
 
    <h1 style="color:green;">
            GeeksForGeeks
        </h1>
 
    <h2>HTML Input Type reset
</h2>
    <form>
        Name:
        <input type="text">
        <br>
        <br> Password:
        <input type="password">
        <br>
        <br>
 
        <input type="submit">
        <input type="reset">
    </form>
</body>
 
</html>

Producción:

 

Navegadores compatibles:

  • Google Chrome 1 y superior
  • Firefox 1 y superior
  • Borde 12 y superior
  • Ópera
  • explorador de Internet
  • Apple Safari 1 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 *