I am having an issue converting a html file to pdf. The html file gets created perfectly, but after converting to pdf it is blank. Has anyone else had this issue before?
<!DOCTYPE html>
<html>
<head>
<style>
table {
font-family:arial , sans-serif;
border-collapse: collapse;
width: 100%;
Font-Size:10pt;
}
td, th {
border: 1px solid #dddddd;
text-align: left;
padding: 8px;
}
tr:nth-child(even) {
background-color: #dddddd;
}
</style>
</head>
<body>
<table>
<tr>
<th colspan="12"style="background-color:#0078D4;color:white">DISPOSAL FORM
(Hardware, Software, and Other AAA Equipment</tr>
<tr>
<th>Asset Type</th>
<th>Dept #</th>
<th>Asset Tag #</th>
<th>Serial #</th>
<th>HW Description</th>
<th>Equipment Location</th>
</tr>
<tr>
<td>@{body('Get_item')?['AssetType1']}</td>
<td>@{body('Get_item')?['Dept1']}</td>
<td>@{body('Get_item')?['AssetTag1']}</td>
<td>@{body('Get_item')?['Serial1']}</td>
<td>@{body('Get_item')?['OData__x0048_W1']}</td>
<td>@{body('Get_item')?['Equip1']}</td>
</tr>
</table>
</body>
</html>