Section indication

Hello,
Is there a way to indicate within an html that with conversion to a document a section is started and ended, maybe like a paragraph? Or can there be used a workaround with some form in indications within html?
Best regards,
Kees

Hi

Thanks for your inquiry. You can use the following tag to insert section break in HTML:

<br style="page-break-before:always; clear:both; mso-break-type:section-break" />

See the following HTML:

<html>
<body>
    <p>This is the first section</p>
    <br style="page-break-before:always; clear:both; mso-break-type:section-break" />
    <p>This is the second section</p>
</body>
</html>

Hope this helps.
Best regards,

Hello,
Thanks for the useful information.
Best regards,
Kees