“Como usar a tag de etiqueta em html” Respostas de código

Como usar a tag de etiqueta em html

<label for="id_of_what_you're_labeling"></label>

<!-- for example-->
<label for="username"></label>
<input type="text" id="username">
DCmax1k

ENTRADA DE RATILA HTML

<!-- Implicit -->
<label>First Name
  <input type="text" name="first_name" />
</label>

<!-- Explicit -->
<label for="firstName">First Name</label>
<input type="text" id="firstName" name="first_name">
<!-- 
Note: the 'for' attribute is mapped to the 'id' and NOT name or type
So if id='BobSponge', then for='BobSponge' 
-->
Code Rabbi

Respostas semelhantes a “Como usar a tag de etiqueta em html”

Perguntas semelhantes a “Como usar a tag de etiqueta em html”

Mais respostas relacionadas para “Como usar a tag de etiqueta em html” em HTML

Procure respostas de código populares por idioma

Procurar outros idiomas de código