The HTML behind it
Customer quote template HTML
This is the whole template. The fields in double braces fill from your data on every render. Copy it into your account and change anything you like.

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style data-thirds="base">
html,body{margin:0}
[data-thirds="canvas"]{position:relative;overflow:hidden}
[data-thirds="canvas"] [data-thirds]{position:absolute;box-sizing:border-box;margin:0}
[data-thirds="text"]{white-space:pre-wrap;overflow-wrap:anywhere}
[data-thirds="image"]{display:block}
[data-thirds="table"]{border-collapse:collapse}
[data-thirds="table"] th,[data-thirds="table"] td{padding:4px 6px;text-align:left;vertical-align:top;border-bottom:1px solid var(--rule,#dde1e8)}
[data-thirds="table"] th{background:var(--head,transparent)}
[data-thirds="list"]{display:flex;flex-direction:column}
[data-thirds="canvas"] [data-thirds="item"]{position:relative;flex:none}
</style>
<style>@page { size: 1080px 1080px; margin: 0; } body { font-family: Arial, sans-serif; } [data-thirds="table"] th,[data-thirds="table"] td { padding: 12px; } </style>
</head>
<body>
<div data-thirds="canvas" data-thirds-kind="image" style="width:1080px;height:1080px;background:#eaf0ff">
<div data-thirds="box" style="left:62px;top:63px;width:14px;height:94px;background:#0a46ff"></div>
<div data-thirds="text" style="left:68px;top:168px;width:945px;height:586px;font-size:69px;color:#0b0b0b;font-weight:700;line-height:1.25;letter-spacing:-2px">“{{ quote }}”</div>
<div data-thirds="box" style="left:68px;top:813px;width:940px;height:2px;background:#c3cce0"></div>
<div data-thirds="text" style="left:68px;top:858px;width:935px;height:60px;font-size:32px;color:#0b0b0b;font-weight:700;line-height:1.25">{{ name }}</div>
<div data-thirds="text" style="left:68px;top:923px;width:935px;height:60px;font-size:25px;color:#575f6d;font-weight:400;line-height:1.25">{{ role }}</div>
<div data-thirds="text" style="left:103px;top:62px;width:905px;height:22px;font-size:12px;color:#0a46ff;font-weight:700;line-height:1.25;letter-spacing:1.3px;text-transform:uppercase">{{ business_name }}</div>
</div>
</body>
</html>
Sample data
The values that made the picture.
Change any of them, and the same HTML makes a new file.
{
"quote": "Our weekly reports take minutes, and every client gets the same clear view.",
"name": "Maya Chen",
"role": "Operations lead, Fieldnote Labs",
"business_name": "Northline stories"
}