i-eat.rocks/apps/notepad.html
PossiblyAxolotl 77ff4a8814 add guestbook
2024-08-16 14:45:56 -06:00

29 lines
No EOL
1.1 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notepad</title>
<style>
* {
padding:0;
margin:0;
height: 100%;
width: 100%;
font-family: monospace;
background: none;
}
textarea {
padding:3px;
max-width: calc(100% - 6px);
max-height: calc(100% - 6px);
}
</style>
</head>
<body>
<textarea style="width: 100%; height: 100%; resize: none; border:none; font-size: large; margin:0;">I've eaten nothing but rocks for 3 days...&NewLine;I don't know how much longer I can keep this going... I need food&NewLine;&NewLine;--- January 21&NewLine;&NewLine;It's been so long... I don't know where I end end and the rocks begin.&NewLine;&NewLine;--- March 12&NewLine;&NewLine;I've started to see things I'm not sure are really there... creatures of pure stone. Can they see me? Why doesn't anyone else notice?&NewLine;&NewLine;--- April 17</textarea>
</body>
</html>