29 lines
No EOL
780 B
HTML
29 lines
No EOL
780 B
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...
I don't know how much longer I can keep this going... I need food</textarea>
|
|
</body>
|
|
</html> |