> For the complete documentation index, see [llms.txt](https://docs.vida.id/identity-stack/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.vida.id/identity-stack/verify/web-sdk/integration/integration-via-script-tag.md).

# Integration via Script Tag

The simplest way to integrate the Vida Web SDK is by using the package hosted by Vida as a script tag. You can add the SDK directly to your application by including the script tag in your `index.html` file or dynamically through JavaScript.

#### Sandbox Environment

For testing and POC purposes, use the following script tag:

```html
<script src="https://web-sdk.vida.id/<VERSION>/sandbox/vida-web-sdk.js"></script>  
```

#### Production Environment

For live applications, use this script tag:

```html
<script src="https://web-sdk.vida.id/<VERSION>/vida-web-sdk.js"></script>  
```

Replace `<VERSION>` with the latest version provided, which is `1.1.0`.

#### About Versioning

The Vida Web SDK follows **semantic versioning** to ensure clarity in updates and compatibility

* **MAJOR**: Significant changes that may not be backward compatible.
* **MINOR**: New features added with backward compatibility.
* **PATCH**: Bug fixes and minor updates that maintain compatibility.

This approach allows for clear version management and ensures the integration process remains straightforward.
