- Create a temporary folder with a simple index.html file in it
- Start a built-in web server with PHP:
php -S localhost:8000
- Expose your local server to the internet:
ssh -R 80:localhost:3000 serveo.net
- Go to your generated address (e.g.
https://abc.serveo.net
) and activate iOS VoiceOver (on your iPhone)
<!DOCTYPE html>
<html lang="sv">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<p role="text">Värld<span>en</span></p>
With role="text"
on the container element, VoiceOver doesn't split it.