🌈
NextGenCSS
  • πŸ”₯NextGenCSSπŸ”₯
    • How to Contribute ?
  • Installation
    • Install and Use
    • Set Up
    • React
  • 🌟Quick Start
    • Get Started
    • Optimizations
    • Breakpoints
    • Colors
    • Buttons
    • BackGround Color
    • Border
    • Font
    • Icons
  • 🧩Components
    • Box
    • Card
    • Footer
    • NavBar
    • Switch
  • βš’οΈUtilities
    • Display
    • Align
    • Center
    • Flex
    • Left
    • Right
    • Padding
    • Margin
    • Grid
    • Scale
  • forms
    • Input Box
  • ☺️Releases and Changelog
    • 0.0 πŸ”₯πŸ”₯ 1st Release
Powered by GitBook
On this page

Was this helpful?

Edit on GitHub
  1. Installation

Set Up

Set-up your first Project !!! πŸŽ‰

Set-Up using CDN

To set up using the CDN file include

<link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rudransh61/NextGenCSS-/src/index.css" media="print"
    onload="this.media='all'">

This line in your HTML file in <head> tag

Demo Code for Quick Start πŸ‘‡

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/gh/rudransh61/NextGenCSS-/src/index.css" media="print"onload="this.media='all'">
</head>
<body>
    <h1>Namaste πŸ™</h1>
</body>
</html>

Last updated 1 year ago

Was this helpful?