Created
June 2, 2017 19:09
-
-
Save viniciuslagedo/5dd47e83d2235f26c96d1e8fbb9c4ed6 to your computer and use it in GitHub Desktop.
Acessibilidade - Barra de Acessibilidade
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | |
<title>Versão de Alto Contraste</title> | |
<link rel="stylesheet" href="./css/contrast.css"> | |
</head> | |
<body> | |
<ul> | |
<li><a href="#top" accesskey="1">Ir para o Conteúdo Principal [Alt + 1]</a></li> | |
<li><a href="#menu" accesskey="2">Início do Menu [Alt + 2]</a></li> | |
<li><a href="#altocontraste" id="altocontraste" accesskey="3" onclick="window.toggleContrast()" onkeydown="window.toggleContrast()">Alto contraste [Alt + 3]</a></li> | |
</ul> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment