HTML file hosting
abjorkencom.vercel.app/html/________
Drop an .html file anywhere on this panel.
Kitchen table notes
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Kitchen table notes</title>
<style>
body {
margin: 0;
min-height: 100vh;
display: grid;
place-items: center;
background: #f3efe7;
color: #1c1917;
font: 400 16px/1.65 Georgia, serif;
}
article { max-width: 27rem; padding: 2rem; }
h1 { font-size: 1.5rem; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }
a { color: #0000ee; }
</style>
</head>
<body>
<article>
<h1>Kitchen table notes</h1>
<p>One file. No build step, no framework, nothing to deploy.</p>
<p>Written in a text editor, dropped on a page, and now it has
an address you can send to somebody.</p>
<p><a href="#">Read the rest</a></p>
</article>
</body>
</html>
.html up to 2 MB/sandboxed/no account/delete it whenever
It renders, it is not downloaded
The file is served as a real document at its own address, so it opens as a page rather than landing in someone’s downloads folder.
Sandboxed away from this site
Your scripts run, but the page sits in its own origin. It cannot read anything belonging to abjorken.com, and nothing here can read it.
Counted, not tracked
Views and daily visitors, worked out from a hash that is thrown away every night. No cookie is set on your page and no IP address is stored.