simple-keyboard/public/index.html

29 lines
643 B
HTML
Raw Normal View History

2018-04-21 04:34:02 +08:00
<!DOCTYPE html>
<html lang="en">
<head>
2019-04-28 10:19:34 +08:00
<meta charset="utf-8" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<meta name="theme-color" content="#000000" />
2018-04-21 04:34:02 +08:00
<title>simple-keyboard</title>
2018-07-14 05:08:35 +08:00
<style>
/**
* Disabling double-tap to zoom in iOS 10+
* as it interferes with simple-keyboard
*/
body,
html {
touch-action: manipulation;
}
</style>
2018-04-21 04:34:02 +08:00
</head>
<body>
<noscript>
You need to enable JavaScript to run this app.
</noscript>
<div id="root"></div>
2018-04-21 04:34:02 +08:00
</body>
</html>