The Page With No Code

2023-01-11

It all started when I saw no-ht.ml, Terence Eden's hilarious response to Salma Alam-Naylor's excellent HTML is all you need to make a website. The latter is an argument against both the silly amount of JavaScript with which websites routinely burden their users, but also even against depending on CSS. As a fan of CSS Naked Day and a firm believer in using JS only for progressive enhancement, I'm obviously in favour.

Terence's site works by delivering a document with a claimed MIME type of text/html, but which contains only the (invalid) "HTML" code <!doctype UNICODE><meta charset="UTF-8"><plaintext> (to work around browsers' wish to treat the page as HTML). This is followed by a block of UTF-8 plain text making use of spacing and emoji to illustrate and decorate the content. It's frankly very silly, and I love it. (My first reaction was "why not just deliver something with Content-Type: text/plain; charset=utf-8 and dispense with the invalid code, but perhaps that's just me overthinking the non-existent problem.)

I think it's possible to go one step further, though, and create a web page with no code whatsoever. That is, one that you can read as if it were a regular web page, but where using View Source or e.g. downloading the page with curl will show you... nothing.

I present: The Page With No Code! (It'll probably only work if you're using Firefox, for reasons that will become apparent later.)

Once you've had a look for yourself and had a chance to form an opinion, here's an explanation of the black magic that makes this atrocity possible:

This is one of the most disgusting things I've ever coded, and that's saying a lot. I'm so proud of myself. You can view the code I used to generate this awful thing on Github.

My server-side implementation of this broke in 2023 after I upgraded Nginx; my new version doesn't support the super-long Link: header needed to make this hack work, so I've updated the page to use the Link: to reference the CSS file rather than embed it via a data URI. It's not as cool, but it at least means you can still see the page. Thanks to Thomas Bradshaw for pointing out the problem.

Links

No-ht.ml

Terence Eden

Salma Alam-Naylor

HTML is all you need to make a website

CSS Naked Day

https://no-ht.ml/

Explanation of Terence's no-ht.ml site, from his blog

The Page With No Code

Firefox

https://danq.me/wp-content/no-code-webpage/

MDN Web Docs: CSS 'content' property

My blog post: The Fourth Way to Inject CSS

Github Gist showing how The Page With No Code was generated