> For the complete documentation index, see [llms.txt](https://nextgencss.gitbook.io/untitled/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://nextgencss.gitbook.io/untitled/installation/set-up.md).

# Set Up

## Set-Up using CDN

To set up using the CDN file include

```html
<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 👇**

```html
<!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>
```
