A minimalist and lightweight starter kit that that utilises Pico for beautiful plug-and-play landing page UI blocks.
Copy HTML, Add Pico CSS and Vona CSS, change your content, and deploy.
There are two ways to include vona.css:
Download Pico and Vona and link both in the of your website.
<link rel="stylesheet" href="css/pico.min.css" />
<link rel="stylesheet" href="css/vona.min.css" />
Alternatively, you can use jsDelivr CDN to link pico.css and vona.css.
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css"
/>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/bit8bytes/vona@v0.0.8/dist/vona.min.css"
/>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="css/pico.min.css" />
<link rel="stylesheet" href="css/vona.min.css" />
<title>My Vona Page</title>
</head>
<body class="vona">
<main class="container">
<h1>Hello Vona!</h1>
</main>
</body>
</html>
If you are interested in contributing to Vona CSS, please send a email to gleiter.tobias@gmail.com.
Licensed under the MIT License.