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

# HTML

> Embed Cuprice on any HTML page

Add these two lines where you want the pricing table to appear:

```html theme={null}
<div data-cuprice-id="YOUR_SHARE_ID"></div>
<script src="https://app.cuprice.io/embed.js" async></script>
```

That's it. The widget will render in place of the `div`.

## Full page example

```html theme={null}
<!DOCTYPE html>
<html>
<head>
  <title>Pricing - My Product</title>
</head>
<body>
  <h1>Choose your plan</h1>

  <!-- Cuprice pricing table -->
  <div data-cuprice-id="YOUR_SHARE_ID"></div>
  <script src="https://app.cuprice.io/embed.js" async></script>
</body>
</html>
```

<Info>
  The script tag only needs to appear once on the page, even if you have multiple embeds.
</Info>
