Forum Discussion

Lene_Kottal's avatar
Lene_Kottal
Copper Contributor
Oct 19, 2025
Solved

Add a page title to a OneNote page using Power Automate

Hello, I have set up a flow in Power Automate to create a new page in OneNote. It extracts information from an email, including the information that I want to be the title of the new page in OneNote...
  • Kidd_Ip's avatar
    Oct 19, 2025

    How about using <title> tag in the Page Content with proper HTML structure.


    To set the page title, you need to include a <title> tag inside a complete HTML document structure in the Page Content field:

    <!DOCTYPE html>
    <html>
      <head>
        <title>@{outputs('PageTitle')}</title>
      </head>
      <body>
        <h1>@{outputs('PageTitle')}</h1>
        <p>Your other content goes here...</p>
      </body>
    </html>

     

Resources