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

# HTML / Vanilla JS

> Embed the ARIS widget on any website with a single script tag.

Add the ARIS widget to any website with a single script tag. No build step, no dependencies, no framework required.

```html theme={null}
<script
  src="https://aris247.com/widget.js"
  data-brokerage-id="YOUR_BROKERAGE_ID"
  async>
</script>
```

Place it before the closing `</body>` tag. The widget renders itself in a Shadow DOM, so it won't conflict with your existing styles.

## Attributes

<ResponseField name="data-brokerage-id" type="string" required>
  Your brokerage ID from the ARIS dashboard.
</ResponseField>

<ResponseField name="src" type="string" required>
  Widget script URL: `https://aris247.com/widget.js`
</ResponseField>

<ResponseField name="async" type="boolean">
  Recommended. Loads without blocking page render.
</ResponseField>

## Works on

Squarespace, Webflow, Wix, Shopify, GoDaddy, plain HTML, and any platform that allows custom script tags.

## Full example

```html theme={null}
<!DOCTYPE html>
<html>
<head>
  <title>Acme Realty</title>
</head>
<body>
  <h1>Welcome to Acme Realty</h1>

  <script
    src="https://aris247.com/widget.js"
    data-brokerage-id="550e8400-e29b-41d4-a716-446655440000"
    async>
  </script>
</body>
</html>
```
