-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathaccessibility.html
111 lines (105 loc) · 4.65 KB
/
accessibility.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
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta
name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"
/>
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<link rel="icon" href="assets/images/fav.png" type="image">
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.9.2/css/bulma.min.css"
integrity="sha512-byErQdWdTqREz6DLAA9pCnLbdoGGhXfU6gm1c8bkf7F51JVmUBlayGe2A31VpXWQP+eiJ3ilTAZHCR3vmMyybA=="
crossorigin="anonymous"
/>
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.8.1/css/all.css">
<link rel="stylesheet" href="assets/css/style.css" />
<title>How Patrick are you?</title>
</head>
<body class="main">
<nav class="navbar has-shadow is-white">
<div class="container">
<div class="navbar-brand">
<a href="index.html" class="navbar-item">
<img src="assets/images/logo-500x500.png" class="brand-image" alt="logo"/>
</a>
<a class="navbar-burger" id="burger-icon" aria-label="menu" aria-expanded="false" data-target="navbar-links">
<img src="assets/images/happy.png" alt="branded toggler icon"/>
</a>
</div>
<div class="navbar-menu" id="nav-links">
<div class="navbar-end">
<a href="index.html" class="navbar-item active">Home</a>
<a href="quiz.html" class="navbar-item">Quiz</a>
<a href="leaderboard.html" class="navbar-item">Leaderboard</a>
</div>
</div>
</div>
</nav>
<div class="container section">
<div class="media">
<div class="media-content">
<div class="content mx-4">
<p>
<strong>Accessibility Statement</strong>
</p>
<p>
<strong>Our commitment and approach to maintaining an accessible website</strong>
How Patrick are you is committed to:
</p>
<ul class="accessibility-list">
<li class="accessibility-list-item">
maintaining an accessible website. We state our commitment to this in a Customer Charter.
</li>
<li class="accessibility-list-item">
ensuring that this website achieves “Level AA” conformance to the Web Content Accessibility Guidelines (WCAG) 2.0.
</li>
<li class="accessibility-list-item">
ensuring that all new information on the website will achieve “Level AA” conformance to the Web Content Accessibility Guidelines (WCAG) 2.0.
</li>
<li class="accessibility-list-item">
including accessibility when we procure 3rd-party systems or upgrades to existing systems.
</li>
</ul>
<p><strong>This website’s conformance with official accessibility guidelines</strong></p>
<p>The website currently has [the conformance rating given in the last web accessibility audit] conformance to the Web Content Accessibility Guidelines (WCAG) 2.0. Our most recent web accessibility audit for this website was on [date of the last web accessibility audit].</p>
</div>
</div>
</div>
</div>
<div class="my-5">
<a href="quiz.html">
<button class="priv-play" type="button">NOW LETS PLAY!</button>
</a>
</div>
<footer class="footer">
<div class="columns">
<div class="column">
<p class="has-text-centered"><a href="privacy-policy.html">Privacy Policy</a></p>
</div>
<div class="column">
<p class="has-text-centered social-links">
<a target="_blank" rel="noopener" href="https://www.facebook.com/">
<i class="fab fa-facebook" aria-hidden="true"></i>
<span class="sr-only">Facebook</span>
</a>
<a target="_blank" rel="noopener" href="https://www.instagram.com/">
<i class="fab fa-instagram" aria-hidden="true"></i>
<span class="sr-only">Instagram</span>
</a>
<a target="_blank" rel="noopener" href="mailto:someone@example.com">
<i class="fas fa-envelope" aria-hidden="true"></i>
<span class="sr-only">Email</span>
</a>
</p>
</div>
<div class="column">
<p class="has-text-centered"><a href="accessibility.html" class="active">Accessibility</a></p>
</div>
</div>
</footer>
<script src="assets/js/main.js" type="module" defer></script>
</body>
</html>