← All Templates

Static Site

HTML/CSSBeginnerFrontend

Clean static website with modern CSS. No frameworks, no build step. Pure HTML, CSS, and vanilla JavaScript.

Features

Code Preview

<!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

Related Templates

React App
JavaScript · Beginner
Next.js App
TypeScript · Intermediate
Chrome Extension
JavaScript · Intermediate
Tailwind App
JavaScript · Beginner