-
Notifications
You must be signed in to change notification settings - Fork 0
/
report_template.html
65 lines (62 loc) · 1.56 KB
/
report_template.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
<!DOCTYPE html>
<html lang="en">
<head>
<title>Accessibility report for %siteName%</title>
<style>
body {
font-family: Verdana;
font-size: 13px;
}
th {
text-align: left;
}
.ifpt
{
background-color: lightgray;
padding: 5px;
}
.audit-item, .f-item
{
border-style: solid;
border-width: 1px;
padding: 5px;
margin-bottom: 10px;
}
.f-item
{
border-collapse: collapse;
background-color: aliceblue;
}
.f-item th
{
border: blue solid 1px;
padding: 5px;
padding-right: 15px;
}
.f-item td
{
padding: 10px;
border: blue solid 1px;
}
</style>
</head>
<body>
<h1>Accessibility report for %siteName%</h1>
<table>
<tr>
<th>Average Score: </th>
<td>%site_average%</td>
</tr>
<tr>
<th>Date and time: </th>
<td>%report_datetime%</td>
</tr>
</table>
<h2>Page with potential issues and their scores</h2>
<table>
%page_scores%
</table>
<h2>Issues found</h2>
%page_audits%
</body>
</html>