Documentation Start
Get started HypeStyle CSS to build your own websites easy. To learn more about you can read the documentation. We have tryed to make the documentation as easy as possible. As much we can.
Getting Startedβ
So you want to start using HypeStyle CSS? And you dont no how to start? Well, you follow the steps below.
CSSβ
Copy-paste the stylesheet link below and add it to your project.
<link
rel="stylesheet"
href="https://unpkg.com/hypestyle@0.1.9/dist/css/hypestyle.min.css"
/>
Hint: You can get started by using our CLI tool.
Intall with package managerβ
pnpm add hypestyle
npm install hypestyle
yarn add hypestyle
Start Templateβ
Here is a simple example of how to start using HypeStyle CSS.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!-- HypeStyle CSS -->
<link
rel="stylesheet"
href="https://unpkg.com/hypestyle@0.1.9/dist/css/hypestyle.min.css"
/>
<title>Yeah i using HypeStyle CSS!</title>
</head>
<body>
<h1>Hello world!</h1>
</body>
</html>