-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
65 lines (45 loc) · 1.59 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Playground</title>
<link rel="stylesheet" type="text/css" href="css/basic.css">
</head>
<body>
<h1>Playground</h1>
<p>Demos, experiments and ideas.</p>
<h2>CSS FlexBox</h2>
<ul>
<li><a href="flexbox1/index.html">FlexBox</a></li>
<li><a href="flexbox2/index.html">FlexBox with tabindex</a></li>
<li><a href="flexbox3/index.html">FlexBox with aria-flowto</a></li>
</ul>
<h2>CSS Speech</h2>
<ul>
<li><a href="cssspeech/index.html">CSS Speech module demo</a></li>
</ul>
<h2>Custom Elements</h2>
<ul>
<li><a href="custom-elements/toggle-button1/index.html">Toggle button custom element</a></li>
<li><a href="custom-elements/toggle-button2/index.html">Toggle button with Shadow DOM</a></li>
<li><a href="custom-elements/read-button1/index.html">Read button custom element</a></li>
</ul>
<h2>Ember.JS</h2>
<ul>
<li><a href="ember/component.html">Accessible Ember component demo</a></li>
<li><a href="ember/not-component.html">Not accessible Ember component demo</a></li>
</ul>
<h2>Web Speech API</h2>
<ul>
<li><a href="speech/speak.html">Web Speech API SpeechSynthesis interface demo</a></li>
<li><a href="speech/getvoices.html">Web Speech API SpeechSynthesis interface: getVoices demo</a></li>
<li><a href="hints/index.html">Web Speech API SpeechSynthesis: hints button demo</a></li>
<li><a href="hints2/index.html">Web Speech API SpeechSynthesis tabpanels demo</a></li>
</ul>
<h2>Vibration API</h2>
<ul>
<li><a href="vibration/index.html">Vibration API demo</a></li>
</ul>
</body>
</html>