stdcss
v0.2.1
Published
One stylesheet to do the job.
Downloads
22
Readme
StandardCSS
This stylesheet aims to provide a simple way to style your website with support for all HTML5 tags, including navigation, forms, tables, and more.
Base HTML structure
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
</head>
<body>
<!-- optional -->
<nav></nav>
<!-- required -->
<main>
<!-- place your content here -->
</main>
<!-- optional -->
<footer></footer>
</body>
</html>