Skip to main content

Web Accessibility

18 Links

Unique text in links

Checking links with Fangs, an add-on for Mozilla Firefox that creates a textual representation of a web page similar to how the page would be read by a modern screen reader.

Links list in Fangs

Hide some text or some options from visual users:

  • display: none
  • visibility: hidden

However, neither display nor visibility are a good solution. What is the right solution?

Skip links

"Skip to menu" or "Skip to main content" at the beginning of a web page.

Example from Fotoklik:

Screenshot of Fotoklik web page

<body class=" cms-index-index cms-home">
<div class="wrapper">
<!-- start header -->
<div class="header">
<div class="header-nav-container">

<div class="header-nav">
<h4><ul id="nav">
<li><a href="/o_nas"><span>O firmie</span></a></li>
<li><a href="/regulamin"><span>Regulamin sklepu</span></a></li>
<li><a href="/raty"><span>Raty</span></a></li>
<li><a href="/leasing"><span>Leasing</span></a></li>
<li><a href="/contacts"><span>Kontakt z nami</span></a></li>
</ul></h4>
</div>

<div class="header-top-container">
<div class="header-top">
        <h1 id="logo"><a href="http://fotoklik.pl/"><img src="http://fotoklik.pl/skin/frontend/default/default//images/logo.gif" alt="Fotoklik.pl" /></a></h1>
        <p class="no-display"><a href="#main"><strong>Przejdź do głównej treści &raquo;</strong></a></p>
.no-display { display:none; }

Is this the correct solution? Does it work well?

Too Many Links

Too many links in a web page make it quite difficult to understand.