-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfigcaptions.html
53 lines (48 loc) · 1.53 KB
/
figcaptions.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Web Accessibility</title>
<link rel="shortcut icon" href="assets/images/favicon.png" type="image/x-icon">
<link rel="stylesheet" href="styles/global.css" />
</head>
<body>
<h1>Issue notes</h1>
<ul>
<li>
Point 1 - Never use Block Element in Inline Element otherwise the
voiceover will not read the description of the image
</li>
<li>
Point 2 - Always use (figcaption) tag for captioning (figure) ta <label>Conflict testing</label>
</li>
</ul>
<ul>
<li>
<a href="#">
<figure>
<img src="Images/clearesult-logo.png" alt="clearesult-logo" />
</figure>
<p class="plain-text">Engineered to consistently spark learner engagement.</p>
</a>
</li>
<li>
<a href="#">
<figure>
<img src="Images/clearesult-logo.png" alt="clearesult-logo" />
<figcaption>
Engineered to consistently spark learner engagement.
</figcaption>
</figure>
</a>
</li>
</ul>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-YvpcrYf0tY3lHB60NNkmXc5s9fDVZLESaAA55NDzOxhy9GkcIdslK1eN7N6jIeHz"
crossorigin="anonymous"
></script>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
</body>
</html>