Forum Discussion
This is from an older pipeline I have in my archives, so it may need to be tested, but I used something like this:
<!DOCTYPE html>
<html>
<head>
<title>Title to Show at the top</title>
<style type="text/css">
table.Snap {background-color:transparent;border-collapse:collapse;width:100%;}
table.Snap th, table.Snap td {text-align:center;border:1px solid black;padding:5px;}
table.Snap th {background-color:AntiqueWhite;}
</style>
</head>
<body>
<p>Sentence describing the table:</p>
<table class="Snap">
</table>
<p>Any text you need after the table.</p>
</body>
</html>