Installation

Quick Start

There are two ways to include vona.css:

Installation Options

Install manually #

Download Vona and download Pico, then link both in the <head> of your HTML:

    <link rel="stylesheet" href="css/pico.min.css">
<link rel="stylesheet" href="css/vona.min.css">

Use CDN #

Link the styles directly from jsDelivr or a custom CDN:

    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/pico.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/bit8bytes/vona@v0.0.5/dist/vona.min.css">

Starter HTML template #

A minimal HTML file to get started:


<!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 container">
    <main>
      <h1>Hello Vona!</h1>
    </main>
  </body>
</html>