El atributo de formulario HTML <label> se utiliza para especificar que el elemento <label> puede contener uno o más formularios.
Sintaxis:
<label form="form_id">
Valores de atributo: contiene un valor único form_id que contiene el valor, es decir, form_id que especifica uno o más de los elementos a los que pertenece la etiqueta. El valor de este atributo debe ser el id del elemento <form>.
Ejemplo:
<!DOCTYPE html> <html> <head> <title> HTML label form Attribute </title> </head> <body style = "text-align:center"> <h1 style = "color:green;"> GeeksforGeeks </h1> <h2> HTML label form Attribute </h2> <form action="#" method="get" id="GFG_form"> <!-- Starts label tag from here --> <label for = "student"> Student </label> <input type = "radio" name = "Occupation" id = "student" value = "student"><br> <label for = "business"> Business </label> <input type = "radio" name = "Occupation" id = "business" value = "business"><br> </form> <label for="other" form="GFG_form">Other</label> </body> </html>
Producción:
Navegadores compatibles: los navegadores compatibles con <label> form Attribute se enumeran a continuación:
- Google Chrome
- explorador de Internet
- Firefox
- Safari
- Ópera
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA