El HTML <label> para Attribute se usa para especificar el tipo de elemento de formulario al que está vinculada una etiqueta .
Sintaxis:
<label for="element_id">
Valores de atributo: contiene el valor, es decir, element_id, que especifica la identificación del elemento al que está vinculada la etiqueta.
Ejemplo: este ejemplo que ilustra el uso del atributo for en el elemento <label> .
html
<!-- HTML code to illustrates label tag --> <!DOCTYPE html> <html> <head> <title> HTML | for Attribute </title> <style> body { font-size: 20px; } </style> </head> <body style="text-align:center"> <h1 style="color:green"> GeeksforGeeks </h1> <h2> HTML | <label>for Attribute </h2> <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> <label for="other"> Other </label> <!-- Ends label tags here --> <input type="radio" name="Occupation" id="other" value="other"> </form> </body> </html>
Producción:
Navegadores compatibles: El navegador compatible con HTML | <label>para el atributo se enumeran a continuación:
- Google Chrome
- Edge versión 12 y superior
- explorador de Internet
- Firefox
- Ópera
- Safari
Publicación traducida automáticamente
Artículo escrito por ManasChhabra2 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA