-
Notifications
You must be signed in to change notification settings - Fork 24
/
missing.html
34 lines (29 loc) · 916 Bytes
/
missing.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>
<head>
<link rel="stylesheet" href="css/normalize.css"/>
<link rel="stylesheet" href="css/main.css"/>
<link rel="stylesheet" href="css/missing.css"/>
</head>
<body>
<div class="h1">Accessibility Fails: Missing elements and attributes</div>
<p>last updated: 17 February 2016</p>
<h2>Language of content</h2>
<h3>html element is missing a lang attribute</h3>
<div class="example">
<p>This page has no lang attribute on the html element</p>
</div>
<h2>Page Title</h2>
<h3>Missing page title</h3>
<div class="example">
<p>This page has no title element</p>
</div>
<h2>Headings</h2>
<h3>Missing H1</h3>
<div class="example">
<p>This page has no h1</p>
</div>
<h3>Implicit heading</h3>
<div class="example">
<p>This page has a div which is being styled to look like an H1</p>
</div>