-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaccessibility-statement.html
More file actions
93 lines (75 loc) · 3.21 KB
/
accessibility-statement.html
File metadata and controls
93 lines (75 loc) · 3.21 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
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
<!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>Accessibility Statement</title>
<link rel="stylesheet" href="style.css" />
<script async src="https://www.googletagmanager.com/gtag/js?id=G-QPYTJMNVBL"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'G-QPYTJMNVBL');
</script>
</head>
<body>
<!-- ========== Header ========== -->
<div id="header-placeholder"></div>
<script>
fetch('header.html')
.then(response => response.text())
.then(data => {
document.getElementById('header-placeholder').innerHTML = data;
});
</script>
<!-- ========== Hero Section ========== -->
<section class="about-section">
<div class="container">
<h2>Accessibility Statement</h2>
<!-- <p>Last updated: May 20, 2019</p> -->
</div>
</section>
<!-- ========== Privacy Policy Content ========== -->
<section class="about-section">
<div class="container">
<dl class="list-terms">
<dt class="heading-6"></dt>
<dd>Diamond Liners is committed to ensuring digital accessibility for people with disabilities. We are continually improving the user experience for everyone and applying the relevant accessibility standards</dd>
<dt class="heading-6"><br>
Conformance Statutes</dt>
<dd>The Web Content Accessibility Guidelines (WCAG) define requirements for designers and developers to improve accessibility for people with disabilities. At Diamond Liners, we strive to meet recommended standards and are conformant with WCAG 2.1 Level A guidelines where feasible.</dd>
<br> <dd> These guidelines outline four main principles that sites should be: <br>
<dt class="heading-6"></dt>
<dd> <b>Perceivable:</b> <br>
Information and user interface components must be presentable to users in ways they can perceive<br>
<b>Operable:</b> <br>
User interface components and navigation must be operable <br>
<B>Understandable:</B><br>
Information and the operation of the user interface must be understandable<br>
<b>Robust:</b> <br>
Content must be robust enough that it can be interpreted reliably by a wide variety of user agents, including assistive technologies<br>
</dd>
<dt class="heading-6"><br>
Feedback</dt>
<dd> We welcome your feedback on the accessibility of the Diamond Liners website. Our efforts are ongoing as our team applies improvements over time to meet WCAG 2.1 Level A guidelines.
Please let us know if you encounter accessibility barriers on MPLAR website:
Call:
<a class="privacy-link" href="mailto:#"></a>
We try to respond to feedback within five business days.
</dd>
</dl>
</div>
</section>
<!-- ========== Footer ========== -->
<div id="footer-placeholder"></div>
<script>
fetch('footer.html')
.then(response => response.text())
.then(data => {
document.getElementById('footer-placeholder').innerHTML = data;
});
</script>
</body>
</html>