diff --git a/documentation/docs/03-template-syntax/08-@html.md b/documentation/docs/03-template-syntax/08-@html.md
index 97304f067f..ba20f0ca15 100644
--- a/documentation/docs/03-template-syntax/08-@html.md
+++ b/documentation/docs/03-template-syntax/08-@html.md
@@ -2,4 +2,42 @@
title: {@html ...}
---
-Coming soon!
+To inject raw HTML into your component, use the `{@html ...}` tag:
+
+```svelte
+
+ {@html content}
+
+```
+
+> [!NOTE] Make sure that you either escape the passed string or only populate it with values that are under your control in order to prevent [XSS attacks](https://owasp.org/www-community/attacks/xss/). Never render unsanitized content.
+
+## Styling
+
+Content rendered this way is 'invisible' to Svelte and as such will not receive [scoped styles](TODO) — in other words, this will not work, and the `a` and `img` styles will be regarded as unused:
+
+
+```svelte
+
+ {@html content}
+
+
+
+```
+
+Instead, use the `:global` modifier to target everything inside the ``:
+
+
+```svelte
+
+```