-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (41 loc) · 1.44 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!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">
<title>UU Workshop</title>
<link rel="stylesheet" href="node_modules/marx-css/css/marx.min.css">
<link rel="stylesheet" href="common/styles/common.css">
<link rel="stylesheet" href="style.css">
</head>
<body>
<main>
<h1>Accessibility workshop</h1>
<p>Solve the following tasks:</p>
<table>
<tr>
<td>Task 1</td>
<td><a href="task1">Tab panel</a></td>
</tr>
<tr>
<td>Task 2</td>
<td><a href="task2">Button with dialog</a></td>
</tr>
<tr>
<td>Task 3</td>
<td><a href="task3">Video player</a></td>
</tr>
</table>
<h6>Useful material:</h6>
<ul class="ul-unstyled">
<li><a href="https://www.w3.org/WAI/ARIA/apg/patterns/">ARIA Authoring Practices Guide</a></li>
<li><a href="https://www.uutilsynet.no/veiledning/nettsteder/711">UU for nettstedet hos uutilsynet</a></li>
<li><a href="https://www.w3.org/WAI/WCAG21/quickref/">WCAG Quickref</a></li>
<li><a href="https://developer.mozilla.org/en-US/docs/Web/HTML/Element">MDN - HTML elements reference</a></li>
<li><a href="https://www.w3.org/TR/wai-aria-1.0/roles">WAI ARIA roles</a></li>
<li><a href="https://www.w3.org/TR/wai-aria-1.0/states_and_properties">WAI ARIA states and properties</a></li>
</ul>
</main>
</body>
</html>