Picco is a super lightweight CSS library designed to provide basic styles without weighing down your project. Visit our website at https://picco-css.vercel.app/.
- Lightweight: Picco is designed to be as lightweight as possible.
- Ease of Use: Includes only the basic styles needed to get started.
- Compatibility: Works with all major browsers.
You can install Picco via CDN:
<link rel="stylesheet" href="https://unpkg.com/picco-css/dist/style.min.css">
- or -
<link rel="stylesheet" href="https://unpkg.com/picco-css/dist/style.min.css.gz">Or you can download the CSS file and include it in your project:
<link rel="stylesheet" href="path/to/picco.min.css">Start using Picco by simply including the CSS file in your project. Here is a basic example:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Project with Picco</title>
<link rel="stylesheet" href="https://unpkg.com/picco-css/dist/style.min.css">
</head>
<body>
<h1>Welcome to Picco</h1>
<p>This is a super lightweight CSS library.</p>
</body>
</html>If you would like to contribute to Picco, feel free to fork the repository and submit a pull request.
Picco is released under the MIT license. See the LICENSE file for more details.