-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccessibility.html
63 lines (56 loc) · 2.19 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
<html>
<head>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.2/css/bootstrap.min.css" integrity="sha384-JcKb8q3iqJ61gNV9KGb8thSsNjpSL0n8PARn9HuZOnIxN0hoP+VmmDGMN5t9UJ0Z" crossorigin="anonymous">
<link
href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel="stylesheet"
integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN"
crossorigin="anonymous"
/>
</head>
<hr>
<body>
<div class="container">
<h3>Build in Accessibiity from Start</h3>
<p>Services should meet or exceed accessibility standards. Everyone in Canada are entitled to have complete access to anything and everything. This is done so by builidng in accessibility from start.</p>
<p>The following graph shows the percentage of various wesbites under the gc.ca domains and subdomains which are tested using Lighthouse - Google Black Box API to meet the accessibility standards set under the Digital Standards handbook</p>
<embed type="text/html" src="notebook/alignment-accessibility_sidestacked.html" class="large-graph">
</div>
</body>
<footer>
<div class="row">
<div class="col-6">
<p>Author: <a href="https://github.com/AdiMakkar/">Adi Makkar</a></p>
</div>
<div class="col-6">
<p>Author: <a href="https://github.com/jaysonmc/">Jayson McIntosh</a></p>
</div>
<div class="col-6">
<p>Code is available on: <a href="https://github.com/AdiMakkar/Digital-Standards-Alignment-Tracker">GitHub</a></p>
</div>
<div class="col-6">
<p>The original is available at: <a href="https://adimakkar.github.io/Digital-Standards-Alignment-Tracker-main/">Digital Standards Check-In Tool</a></p>
</div>
</div>
</footer>
<style>
.small-graph {
height: 400px;
width: 100%;
}
.large-graph {
height: 650px;
width: 100%;
}
footer {
padding-top: 15px;
padding-left: 25;
width: 100%;
background-color: #e3e3e3;
height: 200px;
}
footer p {
margin-left: 35%;
}
</style>
</html>