Update Self Voicing Enabled authored by Schildhauer Niklas's avatar Schildhauer Niklas
...@@ -10,6 +10,7 @@ If the user prefers to use the self-voicing function of web pages, the function ...@@ -10,6 +10,7 @@ If the user prefers to use the self-voicing function of web pages, the function
An example tool to implement the function is the webReader from the company ReadSpeaker.[^2] An example tool to implement the function is the webReader from the company ReadSpeaker.[^2]
In the following code you can see how this tool is implemented. The media feature is used to hide the controls. In the following code you can see how this tool is implemented. The media feature is used to hide the controls.
```html
<head> <head>
<script type="text/javascript" src="//cdn1.readspeaker.com/..."></script> <script type="text/javascript" src="//cdn1.readspeaker.com/..."></script>
<link type="text/css" rel="stylesheet" href="//cdn1.readspeaker.com/..." <link type="text/css" rel="stylesheet" href="//cdn1.readspeaker.com/..."
...@@ -27,7 +28,7 @@ In the following code you can see how this tool is implemented. The media featur ...@@ -27,7 +28,7 @@ In the following code you can see how this tool is implemented. The media featur
... ...
</div> </div>
</body> </body>
```
### Footnotes ### Footnotes
... ...
......