Forum Discussion
Lene_Kottal
Oct 19, 2025Copper Contributor
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...
- 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>
Kidd_Ip
Oct 19, 2025MVP
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>