i-eat.rocks/apps/notepad.html

30 lines
1.3 KiB
HTML
Raw Normal View History

<!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>
2024-08-17 02:40:00 +00:00
<!--&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;&NewLine;The door sits there, taunting. I wonder what's behind it but I am afraid...&NewLine;&NewLine;I have left a note in the guestbook.. please make sure nobody else finds out about this&NewLine;&NewLine;--- July 4-->
<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</textarea>
</body>
</html>