-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 1 KB
/
index.html
File metadata and controls
25 lines (25 loc) · 1 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Alt text</title>
<link rel="stylesheet" href="alt-text-button.css">
</head>
<body>
<main>
<h1>Alt text</h1>
<p><a href="#">a link to focus on to test going back-and-forth between the alt button and another link</a></p>
<figure>
<picture>
<img alt="A supermarket in Berlin with a sign that reads 'freshly made smiles'." loading="lazy" src="https://jamesg.blog/assets/smiles.avif">
</picture>
<details class="alt" aria-label="Show or hide the alt text for the image">
<summary>ALT</summary>
<p>A supermarket in Berlin with a sign that reads "freshly made smiles".</p>
</details>
</figure>
<p><a href="#">another link to focus on to test going back-and-forth between the alt button and another link</a></p>
</main>
</body>
</html>