SóProvas


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

Segundo as recomendações de acessibilidade do WCAG 2.0 e do e-MAG, ao serem utilizados botões do tipo imagem (input type="image") em formulários, que servem para o mesmo propósito de botões do tipo submit, deve ser fornecida uma descrição textual para o botão através do atributo

Alternativas
Comentários
  • "EXEMPLO DE CÓDIGO HTML UTILIZANDO INPUT TYPE="IMAGE" COM O ATRIBUTO "ALT":

    <!DOCTYPE html>

    <html>

        <body>

            <form action="/action_page.php">

                First name: <input type="text" name="fname"><br>

                Last name: <input type="text" name="lname"><br>

                <input type="image" src="img_submit.gif" alt="Submit" width="48" height="48">

            </form>

            <p>

                <b>Note:</b>

                The input type="image" sends the X and Y coordinates of the click that activated the image button.

            </p>

        </body>

    </html>

     

    COMANDO ENVIADO AO SERVIDOR:

     

    Submitted Form Data

    Your input was received as:

    fname=Varnei&lname=Moreira&x=28&y=25

     

    * x=28 e y=25 são as coordenadas exatas do ponto da imagem (img_submit.gif) onde foi clicado, que também são enviadas ao servidor...

    "

  • b-

    The required alt attribute specifies an alternate text for an image, if the image cannot be displayed.

    The alt attribute provides alternative information for an image if a user for some reason cannot view it (because of slow connection, an error in the src attribute, or if the user uses a screen reader).

    https://www.w3schools.com/tags/att_img_alt.asp