-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
40 lines (30 loc) · 1.13 KB
/
index.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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Roving tabindex -- A11ycasts #06</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="css/main.css">
</head>
<body>
<h1>Roving tabindex -- A11ycasts #06</h1>
<div class="demo">
<h3>Drink Options</h3>
<input type="text" placeholder="Focusable element before">
<radio-group>
<radio-button>Water</radio-button>
<radio-button>Coffee</radio-button>
<radio-button>Tea</radio-button>
<radio-button>Cola</radio-button>
<radio-button>Ginger Ale</radio-button>
</radio-group>
<input type="text" placeholder="Focusable element after">
</div>
<div align="center">
<iframe width="560" height="315" src="https://www.youtube.com/embed/uCIC2LNt0bk" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>
</div>
<script src="js/radio-button.js"></script>
<script src="js/radio-group.js"></script>
</body>
</html>