SóProvas


ID
2319052
Banca
FCC
Órgão
AL-MS
Ano
2016
Provas
Disciplina
Arquitetura de Software
Assuntos

Uma das recomendações de acessibilidade do WCAG 2.0 e do e-MAG é que as etiquetas de texto (rótulos) sejam associadas corretamente aos campos nos formulários. Isso é feito através de um atributo na tag label e um atributo na tag input, que deverão ter o mesmo valor. Estes atributos são, respectivamente,

Alternativas
Comentários
  • "EXEMPLO DE CÓDIGO HTML UTILIZANDO LABEL FORINPUT ID:

     

    <!DOCTYPE html>

    <html>

        <body>

            <p>Click on one of the text labels to toggle the related control:</p>

     

            <form action="/action_page.php">

                <label for="male">Male

                <input type="radio" name="gender" id="male" value="male">

                <label for="female">Female

                <input type="radio" name="gender" id="female" value="female">

                <label for="other">Other

                <input type="radio" name="gender" id="other" value="other">

            </form>

     

        </body>

    </html>

    "