diff --git a/build/docs/content/04-html.md b/build/docs/content/04-html.md
index 858f4d74..4eae9357 100644
--- a/build/docs/content/04-html.md
+++ b/build/docs/content/04-html.md
@@ -95,14 +95,14 @@ The following classes allow you to inject printing values:
* `pageNumber`: current page number
* `totalPage`: total pages in the document
-> **Attention:** the CSS properties are independant of the ones used in the `index.html` file.
-> Also, `footer.html` CSS properties override the ones from `header.html`.
+There are some limitations:
-For images, the only solution currently is to use a `base64` encoded source:
-
-```html
-
-```
+* JavaScript is not executed
+* external resources are not loaded
+* the CSS properties are independant of the ones used in the `index.html` file
+* `footer.html` CSS properties override the ones from `header.html`
+* only fonts installed in the Docker image are loaded (see the [fonts section](#fonts))
+* images only work using a `base64` encoded source (`
<img src="data:image/png;base64, iVBORw0KGgoAAAANSUhEUgAAAAUA AAAFCAYAAACNbyblAAAAHElEQVQI12P4//8/w38GIAXDIBKE0DHxgljNBAAO 9TXL0Y4OHwAAAABJRU5ErkJggg==" alt="Red dot" />
-
+
index.html filefooter.html CSS properties override the ones from header.htmlbase64 encoded source (<img src="data:image/png;base64, iVBORw0K... />)FROM thecodingmachine/gotenberg:6 +USER root + RUN apt-get -y install yourfonts + +USER gotenberg