> ## Documentation Index
> Fetch the complete documentation index at: https://developer.quicko.com/llms.txt
> Use this file to discover all available pages before exploring further.

# License

> Quicko Tools are free to use with proper attribution to Quicko.

Quicko Tools are **free to use** for both commercial and non-commercial purposes. There are no usage fees, API limits, or hidden costs associated with embedding our tools into your platform.

## Attribution Requirement

While Quicko Tools are free, **attribution is required**. We believe in the philosophy of giving credit where it's due. By providing proper attribution:

* You help others discover these tools
* You support the ecosystem of free, high-quality tax utilities
* You acknowledge the expertise and effort behind building these tools

> \[!IMPORTANT]
> Attribution is not just recommended—it is **required** when using Quicko Tools. The attribution must be visible to end users.

## Attribution Guidelines

When embedding Quicko Tools, you must include a visible attribution that links back to Quicko. The attribution should be:

1. **Visible** – Easily noticeable to users
2. **Proximate** – Near the embedded tool
3. **Linked** – Hyperlinked to `https://quicko.com`

## Attribution Snippets

Add attribution near your embedded tool. Here are ready-to-use snippets:

<Tabs>
  <Tab title="HTML">
    ```html theme={null}
    <div
      onclick="window.open('https://quicko.com', '_blank', 'noopener,noreferrer')"
      style="
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        height: 56px;
        padding: 0 8px;
        border-top: 1px solid #c6c5d0;
        background-color: #f6f7f8;
        cursor: pointer;
      "
    >
      <span style="font-size: 14px; line-height: 1; color: #666;">
        Powered by
      </span>
      <img
        src="https://cdn.brandfetch.io/id6OWxavk2/theme/dark/idpHm6Kke3.svg?c=1bxid64Mup7aczewSAYMX&t=1765534843947"
        alt="Quicko"
        style="height: 16px; object-fit: contain;"
      />
    </div>
    ```
  </Tab>

  <Tab title="React/JSX">
    ```jsx theme={null}
    <div
      onClick={() => window.open("https://quicko.com", "_blank", "noopener,noreferrer")}
      style={{
        display: 'flex',
        alignItems: 'center',
        justifyContent: 'center',
        gap: '8px',
        height: '56px',
        padding: '0 8px',
        borderTop: '1px solid #c6c5d0',
        backgroundColor: '#f6f7f8',
        cursor: 'pointer'
      }}
    >
      <span style={{ fontSize: '14px', lineHeight: 1, color: '#666' }}>
        Powered by
      </span>
      <img
        src="https://cdn.brandfetch.io/id6OWxavk2/theme/dark/idpHm6Kke3.svg?c=1bxid64Mup7aczewSAYMX&t=1765534843947"
        alt="Quicko"
        style={{ height: '16px', objectFit: 'contain' }}
      />
    </div>
    ```
  </Tab>

  <Tab title="Markdown">
    ```markdown theme={null}
    *Powered by [Quicko](https://quicko.com)*
    ```
  </Tab>
</Tabs>

### Complete Integration Example

Here's how to embed a tool with proper attribution:

```html theme={null}
<div class="quicko-tool-container">
  <iframe
    src="https://tools.quicko.com/hra-calculator"
    width="100%"
    height="500"
    frameborder="0"
    allow="clipboard-write"
  ></iframe>
  <div
    onclick="window.open('https://quicko.com', '_blank', 'noopener,noreferrer')"
    style="
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      height: 56px;
      padding: 0 8px;
      border-top: 1px solid #c6c5d0;
      background-color: #f6f7f8;
      cursor: pointer;
    "
  >
    <span style="font-size: 14px; line-height: 1; color: #666;">
      Powered by
    </span>
    <img
      src="https://cdn.brandfetch.io/id6OWxavk2/theme/dark/idpHm6Kke3.svg?c=1bxid64Mup7aczewSAYMX&t=1765534843947"
      alt="Quicko"
      style="height: 16px; object-fit: contain;"
    />
  </div>
</div>
```

## Why We Choose This Model

<AccordionGroup>
  <Accordion title="Free Access for Everyone" icon="heart" defaultOpen>
    We believe tax-related utilities should be accessible to all. By offering free tools, we empower developers, businesses, and end-users to make informed tax decisions.
  </Accordion>

  <Accordion title="Building Community" icon="users">
    Attribution creates awareness and helps build a community of developers and partners who contribute to the ecosystem of tax utilities.
  </Accordion>

  <Accordion title="Sustainable Growth" icon="trending-up">
    When you attribute Quicko, you help us grow organically. This allows us to continue developing and maintaining high-quality, free tools for everyone.
  </Accordion>
</AccordionGroup>

***

## Terms Summary

| Aspect            | Terms                                            |
| ----------------- | ------------------------------------------------ |
| **Usage**         | Free for commercial and non-commercial use       |
| **Attribution**   | Required and must be visible to end users        |
| **Modifications** | Tools must be embedded as-is; no modifications   |
| **Liability**     | Quicko provides tools "as-is" without warranties |

For complete terms and conditions, please refer to our [Terms of Service](https://quicko.com/terms).

***

## Questions?

<Card title="Contact Us" icon="message-circle" href="https://quicko.com/contact-sales?utm_source=com-quicko-developer&utm_medium=referral&utm_campaign=tools_license" horizontal>
  Have questions about usage or attribution? Reach out to our team.
</Card>
