Clean static website with modern CSS. No frameworks, no build step. Pure HTML, CSS, and vanilla JavaScript.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<title>My Site</title>
<style>
:root { --bg: #000; --text: #f5f5f5; }
body { background: var(--bg); color: var(--text); }
</style>
<script src="https://analytics.blackroad.io/beacon.js" defer></script></head>
<body>
<main>Hello World</main>
</body>
</html>Open in RoadCode