diff --git a/doc/MODERN-WEB-TECHNIQUES.md b/doc/MODERN-WEB-TECHNIQUES.md
index a0c1eed..f73cec7 100644
--- a/doc/MODERN-WEB-TECHNIQUES.md
+++ b/doc/MODERN-WEB-TECHNIQUES.md
@@ -555,27 +555,139 @@ html {
New Content
```
+### Advanced Swap Timing
+
+```html
+
+
+```
+
+**Swap Timing Modifiers:**
+- `swap:250ms` - Delay before old content removed (allows fade-out animation)
+- `settle:250ms` - Delay before new content settled (allows fade-in animation)
+- Combined: Smooth 500ms total transition (250ms fade-out + 250ms fade-in)
+
+**Use Cases:**
+- Language switching with skeleton loaders
+- Content transitions requiring smooth animations
+- Coordinating multiple UI updates
+
+### Out-of-Band Swaps (Multi-Target Updates)
+
+**Problem:** Single request needs to update multiple page areas simultaneously.
+
+**Solution:** Use `hx-swap-oob` attribute for atomic multi-target updates.
+
+```html
+
+
+
+
New Main Content
+
+
+
+5
+
+ Premium
+
+```
+
+**Key Points:**
+- Main target replaced normally
+- OOB elements updated by matching `id` attributes
+- All updates happen atomically (single DOM transaction)
+- Prevents multiple server requests
+- Maintains consistency across UI
+
+**Real Example (Language Switch):**
+```html
+
+
+
+
+
+
+
+
+
+
+
+```
+
+**Benefits:**
+- ✅ Single server round-trip
+- ✅ Atomic updates (no inconsistent intermediate states)
+- ✅ Reduced network overhead
+- ✅ Simpler client-side logic
+
+### History Management
+
+```html
+
+
+
+
+
+```
+
+**Use Cases:**
+- SPA-like navigation without full page reloads
+- Shareable URLs for dynamic content
+- Back/forward button support
+- Deep linking into application state
+
+**Real Example (Language Switching):**
+```html
+
+```
+
+**Result:** URL changes to `/?lang=es`, shareable link, back button works.
+
### Loading States
```html
-
-