-Index.php
Code: Select all
$dompdf = new Dompdf();
$dompdf->set_option('isRemoteEnabled', true);
$dompdf->set_option('isHtml5ParserEnabled', true);
$dompdf->loadHtml($html);
$dompdf->setPaper('A4', 'landscape');
$dompdf->render();
$pdf_output = $dompdf->output();
< /code>
-Voucher-template.html
@font-face{
font-family:'Dancing Script';
src: url('fonts/DancingScript-Regular.ttf');
}
h1 {
color: gold;
font-size: 3em;
margin-top: 0;
margin-bottom: 0.5em;
font-family: 'Dancing Script';
}