diff --git a/README.md b/README.md index 6261a7c..48b5a36 100644 --- a/README.md +++ b/README.md @@ -68,12 +68,54 @@ or ```css @import 'node_modules/simpli-css/dist/SimpliCSS.css'; ``` +## Using CDN +You can include SimpliCSS either through a CDN or by installing it locally in your project. +To include `SimpliCSS` via CDN, simply add the following link to the `
` section of your HTML document: +```html + +``` +### Integration +# Laravel Integration +To integrate SimpliCSS into a Laravel project: +```html +cp path/to/SimpliCSS/src/SimpliCSS.css public/css/ +``` + +# or Using CDN +Add this link to your Blade template (e.g., resources/views/layouts/app.blade.php): +```html + +``` +Then, reference the file in your Blade template: +```html + +``` +# Integration with CodeIgniter +To integrate SimpliCSS into a CodeIgniter project: + +Add SimpliCSS: -## Usage +Using CDN: + +Add the following line to your header file (e.g., `application/views/layouts/header.php`): +```html + +``` +# Local Installation: + +Copy the SimpliCSS.css file to `public/css/ or assets/css/`: +```html +cp path/to/SimpliCSS/src/SimpliCSS.css public/css/ +``` +Include it in your view file: +```html + +``` +### Usage SimpliCSS utilizes simple utility classes to style your elements. Apply these classes to your HTML elements to quickly create layouts and style your content. -### Example Usage +## Example Usage ```html