HTML | Atributo de formulario <medidor>

El atributo de formulario HTML <meter> se utiliza para especificar que el elemento <meter> puede contener uno o más formularios.
Sintaxis: 
 

<meter form="form_id">

Valores de atributo: contiene un valor único form_id que especifica uno o más formularios a los que pertenece el elemento <meter>. El valor de este atributo debe ser el id del elemento <form>.
Ejemplo: 
 

html

<!DOCTYPE html>
<html>
    <head>
        <title>
            HTML meter form Attribute
        </title>
    </head>
     
    <body style = "text-align:center">
         
        <h1 style = "color:green;">
            GeeksforGeeks
        </h1>
         
        <h2>
            HTML meter form Attribute
        </h2>
         
        <form action="#" method="post" id="GFG_form">
            Username: <input type="text" name="uname">
            <br><br>
            Password: <input type="password" name="password">
            <br><br>
            <input type="submit" name="Submit">
        </form>
        <br>
        Author Score: <meter form="GFG_form" min="0"
            low="40" high="90" max="100"value="60">
        </meter>
    </body>
     
</html>                   

Producción: 
 

Navegadores compatibles: 

  • Google cromo 6
  • Borde 18
  • Firefox 16
  • Ópera 11
  • Safari 6
     

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 *