-
Notifications
You must be signed in to change notification settings - Fork 3
/
sample-1.07.html
50 lines (44 loc) · 1.67 KB
/
sample-1.07.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
<!DOCTYPE html>
<html>
<head>
<title>Web accessibility demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<link type="image/ico" rel="shortcut icon" href="//resources.esri.com/favicon.ico">
<link type="image/ico" rel="icon" href="//resources.esri.com/favicon.ico">
</head>
<body class="claro">
<style>
div {
margin: 10px;
padding: 10px;
}
</style>
<header>
<h1 tabindex="0">Web accessibility demo</h1>
<h2 tabindex="0">Tabindex is not inherited</h2>
</header>
<main role="main">
<div style="border: 2px dashed blue">
<a href="http://en.wikipedia.org/wiki/Web_accessibility" onclick="return false;">Accessible link</a>
| <a href="http://en.wikipedia.org/wiki/Web_accessibility" onclick="return false;" tabindex="-1">Not accessible link</a>
</div>
<div style="border: 2px dashed red" tabindex="-1">
<a href="http://en.wikipedia.org/wiki/Web_accessibility" onclick="return false;">Accessible link</a>
| <a href="http://en.wikipedia.org/wiki/Web_accessibility" onclick="return false;" tabindex="-1">Not accessible link</a>
</div>
<p tabindex="-1">
The needs that Web accessibility aims to address include:
<ul tabindex="-1">
<li tabindex="0">Visual</li>
<li tabindex="0">Motor/Mobility</li>
<li tabindex="0">Auditory</li>
<li tabindex="0">Seizures</li>
<li tabindex="0">Cognitive/Intellectual</li>
</ul>
</p>
</main>
</body>
</html>