30 lines
No EOL
1.3 KiB
HTML
30 lines
No EOL
1.3 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>
|
|
<!--




















The door sits there, taunting. I wonder what's behind it but I am afraid...

I have left a note in the guestbook.. please make sure nobody else finds out about this

--- 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...
I don't know how much longer I can keep this going... I need food

--- January 21

It's been so long... I don't know where I end end and the rocks begin.

--- March 12</textarea>
|
|
</body>
|
|
</html> |