diff --git a/README.md b/README.md
index 972fc53..f8569b8 100644
--- a/README.md
+++ b/README.md
@@ -119,6 +119,25 @@ The library supports various page layouts and configurations:
Buttons, forms, and callback binding
+
+
+ 🆕 Pagination & PageBreak
+
+ Multi-page documents with explicit and automatic breaks
+
+
+ 🆕 Link Navigation
+
+ All 4 link types: Internal, External, API, Function
+
+
+
+
+ 🆕 Comprehensive Forms
+
+ All 14 form field types with validation
+
+
## Examples
@@ -133,12 +152,20 @@ The `examples/` directory contains working demonstrations:
- **[05_html_table_with_images.py](examples/05_html_table_with_images.py)** - Tables with embedded images
- **[06_functional_elements_demo.py](examples/06_functional_elements_demo.py)** - Interactive buttons and forms with callbacks
+### 🆕 Advanced Features (NEW)
+- **[08_pagination_demo.py](examples/08_pagination_demo.py)** - Multi-page documents with PageBreak ([11 tests](tests/examples/test_08_pagination_demo.py))
+- **[09_link_navigation_demo.py](examples/09_link_navigation_demo.py)** - All link types and navigation ([10 tests](tests/examples/test_09_link_navigation_demo.py))
+- **[10_forms_demo.py](examples/10_forms_demo.py)** - All 14 form field types ([9 tests](tests/examples/test_10_forms_demo.py))
+
Run any example:
```bash
cd examples
python 01_simple_page_rendering.py
+python 08_pagination_demo.py # NEW: Multi-page documents
```
+**All new examples include comprehensive test coverage!** See [NEW_EXAMPLES_AND_TESTS_SUMMARY.md](docs/NEW_EXAMPLES_AND_TESTS_SUMMARY.md) for details.
+
See **[examples/README.md](examples/README.md)** for detailed documentation.
## Documentation