<< back

usage

learn how to use noCSS in a minute


1. create your html document

it can be as simple as this:

<!DOCTYPE html>
<html>
    <head>
    <title>Document</title>
    </head>
    <body>
    <h1>hello world</h1>
    </body>
</html>


2. add the noCSS cdn link

add the link to the bottom of your <head> like this:

<!DOCTYPE html>
<html>
<head>
    <title>Document</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@uto/nocss@1.0.6/nocss.min.css">
</head>
<body>
    <h1>hello world</h1>
</body>
</html>


3. add your html

write raw html and see it turn into a simple minimalistic website