Insert HTML to word template

I want to insert HTML to word template which already has some content. The function used is:
documentBuilder.insertHtml(“some Html content”);
But my problem is the HTML content always appears on the top of the page. How can I fix it? Please

Furthermore, How can I insert Html to a specific position?

@namlb

You need to move the cursor to the desired location in the document and then insert the HTML. Please read the following article about moving cursor in the document.

Moving the Cursor

A post was split to a new topic: Document Builder’s insertHtml(“some html”) method creates a new line