Skip to content

Add bare minimum HTML tags

These are HTML best practices to work around crazy defaults of the web.

  • Use no-quirks mode, to save future CSS changes (if any) a small change. (Also cf. https://www.quirksmode.org/)
  • Set to UTF-8 so that if we ever have a vote that's not entirely using ASCII characters, it would still be fine.
  • Set viewport to device-width so that on mobile the screen isn't unnecessarily zoomed out.
Before (100% zoom) After (100% zoom)
20240506T143643+0900 20240506T143733+0900

This might conflict with !1, but has a much, much smaller scope.

Merge request reports