-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
43 lines (41 loc) · 1.14 KB
/
index.html
File metadata and controls
43 lines (41 loc) · 1.14 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WCAG</title>
<link rel="stylesheet" href="main.css">
</head>
<body>
<h1>WCAG</h1>
<p>Essa é uma página simples, para ilustrar o funcionamento básico de um script</p>
<ul>
<li>
<h3>Teste - h3</h3>
<h2>Teste - h2</h2>
<p>Ordem incorreta dos headings</p>
</li>
</ul>
<ul>
<li>
<a href="http://globo.com.br/" title="Clique aqui para acessar o site globo.com">Globo.com</a>
<p>Link Correto</p>
</li>
<li>
<a href="http://globo.com.br/">Globo.com</a>
<p>Link incorreto</p>
</li>
</ul>
<br /><br />
<ul>
<li>
<a href="https://placeholder.com">
<img src="http://via.placeholder.com/350x150">
</a>
<p>Link e imagens incorretos - faltando alt e title</p>
</li>
</ul>
<script src="main.js"></script>
</body>
</html>