-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
54 lines (54 loc) · 1.52 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
<!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.0" />
<title>JS Simple Accessibility</title>
<link rel="stylesheet" href="accessibility.style.css" />
<style>
* {
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
-o-box-sizing: border-box;
-ms-box-sizing: border-box;
box-sizing: border-box;
}
html,
body {
margin: 0;
padding: 0;
position: relative;
background: #ffffff;
height: 100%;
min-height: 100%;
}
</style>
</head>
<body>
<div style="position: relative; padding: 30px; margin: 0 auto; width: 80%">
<h1>This is my H1</h1>
<h2>This is my H2</h2>
<h3>This is my H3</h3>
<h4>This is my H4</h4>
<h5>This is my H5</h5>
<h6>This is my H6</h6>
<a href="">This is a link</a>
<p>This is my text</p>
</div>
<script src="accessibility.functions.js"></script>
<script type="text/javascript">
ACCESSIBILITY.init();
</script>
<div vw class="enabled">
<div vw-access-button class="active"></div>
<div vw-plugin-wrapper>
<div class="vw-plugin-top-wrapper"></div>
</div>
</div>
<script src="https://vlibras.gov.br/app/vlibras-plugin.js"></script>
<script>
new window.VLibras.Widget("https://vlibras.gov.br/app");
</script>
</body>
</html>