diff --git a/README.md b/README.md
index aef45daf..5642c449 100644
--- a/README.md
+++ b/README.md
@@ -171,6 +171,148 @@ This will generate two DOCX files in the `example/typescript` directory:
- `basic-example.docx` - A simple document with minimal configuration
- `advanced-example.docx` - A document with headers, footers, and advanced formatting options
+## Browser Standalone Build
+
+The library provides a standalone browser build that bundles all dependencies into a single file. This allows you to use the library directly in HTML pages without any build tools or module bundlers.
+
+### Build Outputs
+
+When you run `npm run build`, three distribution files are generated:
+
+| File | Format | Size | Dependencies | Use Case |
+|------|--------|------|--------------|----------|
+| `dist/html-to-docx.esm.js` | ES Module | ~1.6 MB | External | Modern bundlers (Webpack, Vite, Rollup) |
+| `dist/html-to-docx.umd.js` | UMD | ~1.6 MB | External | Node.js, AMD, or manual dependency management |
+| `dist/html-to-docx.browser.js` | IIFE | ~2.4 MB | **All bundled** | Direct browser usage, CDN, quick prototypes |
+
+### Build Commands
+
+```bash
+# Build all versions (ESM + UMD + Browser)
+npm run build
+
+# Build only the browser standalone version (development)
+npm run build:browser
+
+# Build only the browser standalone version (production, minified)
+npm run build:browser:prod
+```
+
+### Browser Usage
+
+Include the standalone browser build directly in your HTML:
+
+```html
+
+
+
+ HTML to DOCX Demo
+
+
+
+
+
+
+
+
+
+
+
+
+
+```
+
+### Testing the Browser Build
+
+A test page is included to verify the browser build works correctly:
+
+```bash
+# Build and start the test server
+npm run test:browser
+```
+
+Then open http://localhost:8080/tests/test_browser.html in your browser.
+
+The test page allows you to:
+- Edit HTML content in a textarea
+- Click "Generate DOCX" to create and download a Word document
+- See status messages for success or errors
+
+### CDN Usage
+
+You can also host the browser build on a CDN for easy inclusion:
+
+```html
+
+
+```
+
+### Limitations in Browser Environment
+
+- **Sharp (SVG conversion)**: The `sharp` image processing library is not available in browsers. SVG images will be embedded natively (requires Office 2019+).
+- **File System**: No direct file system access. Documents are returned as Blob/ArrayBuffer for download.
+- **Image URLs**: Remote images must be CORS-enabled or converted to base64 data URLs.
+
## Usage
```js
@@ -487,10 +629,6 @@ Made with [contrib.rocks](https://contrib.rocks).
---
-**Note:** Currently optimized for Node.js environments. Browser support is planned for future releases.
-
----
-