StandardCSS

Vanilla HTML5 tag components


StandardCSS is a CSS library that aims to provide a simple way to style your website with support for all HTML5 tags, including navigation, forms, tables, and more.

This is especially useful for:

Installation

Features

More features

Why should I use StandardCSS?

Well, don’t you want your HTML file look like this?

<nav>
  <a href="/">
    <img src="/logo.svg" alt="Logo" />
    <h1>My Website</h1>
  </a>

  <a href="/">Home</a>
  <a href="/about">About</a>
  <a href="/contact">Contact</a>
</nav>
<main>
  <h1>Welcome to my website!</h1>
</main>

And everything just works out of the box; no need to write a single line of CSS, just include the StandardCSS stylesheet and you’re good to go!

How does it look like?

This website here is already styled with StandardCSS. Everything you see here is plain HTML5 tags with StandardCSS applied (and a SvelteKit backend lol).

List of components