Hey there.
I am trying to convert a MS List input to PDF
I am running into the error of
"Conversion of this file to PDF is not supported. (InputFormatNotSupported / other)",
Here is my flow

and below is my HTML
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2 HOUR REPORT</title>
<style>
body {
font-family: Arial, sans-serif;
font-size: 16px;
}
.container {
width: 80%;
margin: 0 auto;
border: 2px solid #000;
padding: 20px;
position: relative;
}
.logo {
position: absolute;
top: 10px;
right: 10px;
}
.green-box {
width: 200px;
height: 200px;
background-color: green;
position: absolute;
top: 10px;
left: 10px;
background-image: url('THIS WILL BE GRAPHIC PATH.png');
background-size: cover;
}
.main-heading {
text-align: center;
}
.sub-heading {
margin-left: 20px;
}
.footer {
text-align: center;
font-size: 12px;
margin-top: 20px;
}
</style>
</head>
<body>
<div class="container">
<img src="THIS WILL BE LOGO PATH.png"> <!-- Replace with your logo path -->
<div class="green-box"></div>
<h1 class="main-heading">2 HOUR REPORT</h1>
<div class="sub-heading">
<h2>Investigating manager</h2>
<p></p>
<h3>Operational Area</h3>
<p></p>
<h4>HSSA Advisor</h4>
<p></p>
<h4>Incident Dates</h4>
<p></p>
<h4>Time of Incident</h4>
<p></p>
<h4>Who was involved?</h4>
<p></p>
<h4>Where?</h4>
<p></p>
<h4>What has happened?</h4>
<p></p>
<h4>Immediate Actions?</h4>
<p></p>
<h4>Photos (if applicable)</h4>
<p></p>
</div>
</div>
<div class="footer">
<p>v2.0 | Date of creation: April 27, 2024</p>
</div>
</body>
</html>
Thanks