diff --git a/docs/api/quick.md b/docs/api/quick.md
index a4a56f1..e6472da 100644
--- a/docs/api/quick.md
+++ b/docs/api/quick.md
@@ -2,6 +2,22 @@
SigPro is a high-performance micro-framework that updates the **Real DOM** surgically. No Virtual DOM, no unnecessary re-renders, and built-in **Cleanup** (memory cleanup).
+
+
+ $-$$
+ $watch
+ $html
+ $if
+ $for
+ $router
+ $mount
+
+
+ ⚡ All the power! ⚡
+
+
6 functions that will change the way you code
+
+
## Core Functions
Explore the reactive building blocks of SigPro.
@@ -73,8 +89,8 @@ SigPro provides **PascalCase** wrappers for all standard HTML5 tags (e.g., `Div`
### Syntax Pattern
-
-
Tag({ attributes }, [children])
+
+
Tag({ attributes }, [children])
### Special Attributes & Routing
diff --git a/docs/api/tags.md b/docs/api/tags.md
index a5db97c..1a139e8 100644
--- a/docs/api/tags.md
+++ b/docs/api/tags.md
@@ -126,6 +126,62 @@ const UserStatus = (name, online) => (
);
```
+---
+
+## 6. Custom Tags with `$html`
+
+Create reusable components using `$html`. All reactivity auto-cleans itself.
+
+### Basic Example
+
+```javascript
+const UserCard = (props, children) =>
+ $html('div', { class: 'card p-4', 'data-id': props.id }, children);
+
+UserCard({ id: 123 }, [H3("John Doe"), P("john@example.com")]);
+```
+
+### Reactive Component (Auto-Cleaned)
+
+```javascript
+const Counter = (initial = 0) => {
+ const count = $(initial);
+ return $html('div', { class: 'flex gap-2' }, [
+ Button({ onclick: () => count(count() - 1) }, '-'),
+ Span(() => count()),
+ Button({ onclick: () => count(count() + 1) }, '+')
+ ]);
+};
+```
+
+### When Manual Cleanup is Needed
+
+Only for external resources (intervals, sockets, third-party libs):
+
+```javascript
+const Timer = () => {
+ const time = $(new Date().toLocaleTimeString());
+ const el = $html('span', {}, () => time());
+
+ const interval = setInterval(() => time(new Date().toLocaleTimeString()), 1000);
+ el._cleanups.add(() => clearInterval(interval)); // Manual cleanup
+
+ return el;
+};
+```
+
+### `$html` vs Tag Helpers
+
+| Use | Recommendation |
+|:---|:---|
+| Standard tags (`div`, `span`) | `Div()`, `Span()` helpers |
+| Reusable components | Function returning `$html` |
+| Dynamic tag names | `$html(tagName, props, children)` |
+
+> **Auto-cleanup**: `$html` automatically destroys watchers, events, and nested components. Only add to `_cleanups` for external resources.
+
+---
+
| State (`online`) | Rendered HTML | Memory Management |
| :--- | :--- | :--- |
| **`true`** | `
` | Watcher active |