-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
117 lines (101 loc) · 4.63 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
<!DOCTYPE html>
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0"/>
<title>Accessibility examples</title>
<!-- CSS -->
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="css/materialize.css" type="text/css" rel="stylesheet" media="screen,projection"/>
<link href="css/style.css" type="text/css" rel="stylesheet" media="screen,projection"/>
</head>
<body>
<nav class="light-blue darken-4" role="navigation">
<div class="nav-wrapper container"><a id="logo-container" href="index.html" class="brand-logo">Accessibility</a>
<ul class="right hide-on-med-and-down">
<li><a href="pages/form.html">Form</a></li>
<li><a href="pages/headers.html">Header</a></li>
<li><a href="pages/table.html">Table</a></li>
</ul>
<ul id="nav-mobile" class="side-nav" style="transform: translateX(-100%);">
<li><a href="pages/form.html">Form</a></li>
<li><a href="pages/headers.html">Header</a></li>
<li><a href="pages/table.html">Table</a></li>
</ul>
<a href="#" data-activates="nav-mobile" class="button-collapse"><i class="material-icons">menu</i></a>
</div>
</nav>
<div class="section no-pad-bot" id="index-banner">
<div class="container">
<br><br>
<h1 class="header center orange-text">Accessibility examples</h1>
<div class="row center">
<p class="col s12 light">Examples of dos and don'ts.</p>
</div>
</div>
</div>
<div class="container">
<div class="section">
<div class="row">
<div class="col s12 m4">
<div>
<h2 class="center">Tools</h2>
<ul class="center">
<li><a href="http://wave.webaim.org/">Wave</a></li>
<li><a href="http://a11y-style-guide.com/">A11y Style Guide</a></li>
<li><a href="https://developers.google.com/web/tools/lighthouse/">Google Lighthouse</a></li>
<li><a href="https://www.w3.org/TR/WCAG20/">WCAG 2.0</a></li>
<li><a href="https://uu.difi.no/">UU Difi</a></li>
</ul>
</div>
</div>
<div class="col s12 m4">
<h2 class="center">Principles </h2>
<dl class="center">
<dt><strong>Perceivable</strong></dt>
<dd style="margin: 0 0 10px 0"> Information and user interface components must be presentable to users in ways they can
perceive
</dd>
<dt><strong>Operable</strong></dt>
<dd style="margin: 0 0 10px 0">User interface components and navigation must be operable.</dd>
<dt><strong>Understandable</strong></dt>
<dd style="margin: 0 0 10px 0">Information and the operation of user interface must be understandable.</dd>
<dt><strong>Robust</strong></dt>
<dd style="margin: 0 0 10px 0">Content must be robust enough that it can be interpreted reliably by a wide variety of user
agents, including assistive technologies.
</dd>
</dl>
</div>
<div class="col s12 m4">
<h2 class="center">Videos </h2>
<ul class="center">
<li><a href="https://www.youtube.com/watch?v=hpiJHXPV3oM/">Fra tilgjengelighetsdagen 2013 - Brukertest: Slik opplever en blind nettsiden din - Northern Beat</a></li>
<li><a href="https://oslobeta.no/2016/04/28/alle-er-jo-ikke-blinde/">Alle er jo ikke blinde? - Oslo Beta</a></li>
</ul>
</div>
</div>
</div>
</div>
<footer class="page-footer light-blue darken-4">
<div class="container">
<div class="row">
<br/>
<br/>
<br/>
<br/>
<br/>
<br/>
</div>
</div>
<div class="footer-copyright">
<div class="container ">
Design by <a class="white-text" href="http://materializecss.com">Materialize</a>
</div>
</div>
</footer>
<!-- Scripts-->
<script src="https://code.jquery.com/jquery-2.1.1.min.js"></script>
<script src="js/materialize.js"></script>
<script src="js/init.js"></script>
</body>
</html>