Loading...
Learn how to get started with Apex
The quickest way to get started is by using the CDN link:
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/apexcss@latest/dist/framework.css">Install Apex using npm:
npm install apexcssThen import it in your CSS or JavaScript file:
@import 'apexcss/dist/framework.css';Import Apex in your main CSS file:
// app/globals.css or styles/globals.css
@import 'apexcss/dist/framework.css';Import in your main.js or main.ts:
import 'apexcss/dist/framework.css';Add to angular.json:
{
"styles": [
"node_modules/apexcss/dist/framework.css",
"src/styles.css"
]
}Start using utility classes in your HTML:
<div class="container mx-auto p-4">
<h1 class="text-2xl font-bold mb-4">Hello, Apex!</h1>
<p class="text-gray-600">Start building with utility classes.</p>
</div>