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:
Use CDN #
Link the styles directly from jsDelivr or a custom CDN:
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>