-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (33 loc) · 1.01 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Accessibility assignment</title>
</head>
<style>
*{
margin: 0;
padding: 0;
}
</style>
<body>
<h1>Normal Accessibility Test</h1> <br>
<a href="#" tabindex="1" >Tutorials</a>
<a href="#" tabindex="2" >References</a>
<a href="#" tabindex="3" >Exercise</a>
<a href="#" tabindex="4" >Videos</a>
<a href="#" tabindex="5" >New</a>
<a href="#" tabindex="6" >Menu</a>
<br />
<a href="#" tabindex="7" >Log in</a>
<br />
<a href="#" tabindex="8" >Paid</a>
<a href="#" tabindex="9" >Courses</a>
<a href="#" tabindex="10" >NEW</a> <br>
<button tabindex="11" accesskey="o"> <u>O</u>k</button>
<button tabindex="12" accesskey="l">Cance<u>l</u></button>
</li>
</body>
</html>