I did put the concatenate expression but now even the file shows the title of compose actions.
that is my concat input:
concat('
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<style>
body {
font-family: Calibri;
font-size: 11px;
color: black;
}
th {
text-align: left;
vertical-align: text-top;
font-family: Calibri;
font-size: 11px;
font: bold;
color: black;
}
td {
text-align: left;
vertical-align: text-top;
font-family: Calibri;
font-size: 12px;
color: black;
}
h2 {
text-align: left;
padding-top: 0;
margin-top: 0;
font-family: Calibri;
font-size: 12px;
font: bold;
color: #EA640D;
}
table {
width: 30%;
padding: 13px 13px;
font-family: Calibri;
font-size: 8pt;
}
</style>
</head>
<body>
',
'<img src="', variables('Logo') ,'">',
'<h1>Report Summary</h1>',
'<table style="width: 100%">',
'<label>', outputs('Compose_3'),'</label>',
'</table>',
'<label>', outputs('Compose_2'),'</label>',
'</table>'
,
'<h2>Transactions</h2>',
'<table style="width: 60%">',
'<label>', outputs('Compose'),'</label>',
'</table>'
,
'</html>')