This repository was archived by the owner on Oct 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (52 loc) · 1.49 KB
/
index.html
File metadata and controls
53 lines (52 loc) · 1.49 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/custom.css">
</head>
<body>
<div class="container">
<div class="page-header">
<h3>508 Acessibilty Checker</h3>
<p id="status"></p>
</div>
<div class="row">
<button class="btn btn-primary" id="accessibilityCheckBtn">Check Page</button>
</div>
</br>
<div class="row" id="summary">
<h5>Errors and Warnings Summary</h5>
<div class="table-responsive">
<table class="table table-condensed">
<tr id="errors">
<td>Errors</td>
</tr>
<tr id="warnings">
<td>Warnings</td>
</tr>
</table>
</div>
</div>
</br>
</br>
<div class="row" id="images">
<h5>Image Alt Tag Check</h5>
<div class="table-responsive">
<table class="table table-striped table-hover">
<thead>
<tr>
<th scope="col">Image Alt</th>
<th scope="col">Image Src</th>
</tr>
</thead>
<tbody id="imagesBody">
</tbody>
</table>
</div>
</div>
</div>
</br>
<script src="/jquery-3.2.1.min.js" type="text/javascript"></script>
<script src="/background.js" type="text/javascript"></script>
</body>
</html>