A quickstart guide to getting started with rainboot.css
Create or choose a folder to be your workspace.
Go to the rainboot.css releases
page and download
rainboot.css
(or rainboot.min.css
) from the latest release and put it in
your workspace.
Go to the Bootstrap releases page
and download bootstrap-<VERSION>-dist.zip
where <VERSION>
corresponds to the
Bootstrap version from the rainboot.css
file. You can find the appropriate
Bootstrap version by opening the rainboot.css
file and searching for the legal
comment.
Unzip the Bootstrap dist and copy the
bootstrap-<VERSION>-dist/js/bootstrap.bundle.min.js
file into your workspace.
index.html
and include CSS and JS filesInside your workspace, create index.html
and add the following code. This will
create a basic page using Bootstrap with the rainboot.css theme.
<!DOCTYPE html>
<html>
<head>
<link href="rainboot.css" rel="stylesheet" />
<script src="bootstrap.bundle.min.js"></script>
<title>Quickstart</title>
</head>
<body>
<div class="btn btn-primary">Hello, world!</div>
</body>
</html>
Open your index.html
in a web browser of your choice. You should now see a
rainboot.css styled button.