Source code
Revision control
Copy as Markdown
Other Tools
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<style>
html {
user-select: none;
}
body {
margin: 0;
}
textarea {
width: 100%;
height: 100%;
position: fixed;
user-select: text;
}
</style>
</head>
<body>
<textarea id="textarea" name="name" rows="1" cols="20" inputmode="none">text</textarea>
</body>
</html>