-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.ejs
28 lines (27 loc) · 868 Bytes
/
index.ejs
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Applying WCAG 2.2 to Mobile</title>
<link rel="stylesheet" href="matf.css">
</head>
<body>
<div class="container">
<h1>Applying WCAG 2.2 to Mobile</h1>
<p>
This is an <a href="https://www.w3.org/standards/types/#ED">Editor's draft</a>, created by the <a href="https://www.w3.org/WAI/about/groups/task-forces/matf/">Mobile Accessibility Task Force (MATF)</a> at the <a href="https://www.w3.org/">W3C</a>.
</p>
<p>
You can find our working repository at <a href="https://github.com/w3c/matf">Github</a>.
</p>
<div class="guidance">
<% files.forEach(file => { %>
<section>
<%- file.html %>
</section>
<% }); %>
</div>
</div>
</body>
</html>