> 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/quick-start/get-started.md).

# Get Started

NextGenCSS is a powerful CSS library which will help you to code faster  in short time

*<mark style="color:red;">"It is not made for replacing existing library , It is made to make websites and UIs faster "</mark>*

## How to Start ?

To start with a basic project check [Set-Up](/untitled/installation/set-up.md) page to make first website with **NextGenCSS🔥**

## Basic CSS

In **NextGenCSS** we mostly have default CSS and some custom HTML tags for faster development and make it feel like React components.

## Examples🔥

### 🔥 Heading tags

```html
<h1>This is h1 tag</h1>
<h2>This is h2 tag</h2>
<h3>This is h3 tag</h3>
<h4>This is h4 tag</h4>
<h5>This is h5 tag</h5>
<h6>This is h6 tag</h6>
```

<figure><img src="https://2921085085-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg5nbtYYIYcbVnZhdfLY2%2Fuploads%2Fgit-blob-7db71dc059d4f6801db73be58d91ec14d2567abc%2F1.png?alt=media" alt="output"><figcaption><p>Output</p></figcaption></figure>

### 🔥 Anchor Tag

```html
<a href="#">This is an anchor tag</a>
<a href="#" class="link">This is an anchor tag</a> <!-- It will how gray color oh hover --!>
```

<figure><img src="https://2921085085-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg5nbtYYIYcbVnZhdfLY2%2Fuploads%2Fgit-blob-db471ec113c80a224996745d3492d3e237aba3f8%2F2.png?alt=media" alt=""><figcaption><p>Second anchor tag is hovered</p></figcaption></figure>

### 🔥 List Example

#### *Unordered List are same as Ordered List by Default*

```
<ul>
<li>li 1</li>
<li>li 2</li>
<li>li 3</li>
</ul>
```

```
<ol>
<li>li 1</li>
<li>li 2</li>
<li>li 3</li>
</ol>
```

<figure><img src="https://2921085085-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fg5nbtYYIYcbVnZhdfLY2%2Fuploads%2Fgit-blob-b5a04900f596c949a753d81f86f80f6ac84b2f22%2F3.png?alt=media" alt=""><figcaption></figcaption></figure>
