SóProvas


ID
1754782
Banca
FCC
Órgão
DPE-SP
Ano
2015
Provas
Disciplina
Arquitetura de Software
Assuntos

Uma das recomendações do e-MAG diz que devem ser fornecidas âncoras, disponíveis na barra de acessibilidade, que apontem para links relevantes presentes na mesma página. Nesse contexto, considere o fragmento de código a seguir: 

<div>

<a href="#" id="irconteudo" class="oculto">Início do conteúdo</a> 

<!-- Conteúdo -->

</div>


Para que um link do menu da barra de acessibilidade da página possa definir uma âncora para o link do fragmento de código acima, é necessário que este link tenha o atributo 

Alternativas
Comentários
  • About hyperlinks:

    The main use of anchor tags < a  > < /a > is as hyperlinks. That basically means that they take you somewhere. Hyperlinks require the href property, because it specifies a location.

    Hashtag:

    A hashtag - # within a hyperlink specifies an html element id to which the window should be scrolled.

    href="#some-id" would scroll to an element on the current page such as < div id="some-id" >.

    href="//site.com/#some-id" would go to site.com and scroll to the id on that page.

    Scroll to Top:

    href="#" doesn't specify an id name, but does have a corresponding location - the top of the page. Clicking an anchor with href="#" will move the scroll position to the top


    http://stackoverflow.com/questions/4855168/what-is-href-and-why-is-it-used