The following code snippet is shown "Using DOMPDF to render PDF". Here,I have two questions:
1.where to add CSS code?
2.how to make HTML code outside single code (see $html variable)?
Thanks in advance and really appreciate for any help.
<?php
require_once("dompdf_config.inc.php");
$html =
'<html><body>'.
'<p>Hello World!</p>'.
'</body></html>';
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->render();
$dompdf->stream("hello_world.pdf");
?>