Я пытаюсь сгенерировать PDF из HTML шаблона с внешним css файлом, но я получаю пустой pdf с кодом ниже. Мне нужны оба css & HTML. Я перепробовал все возможные способы, но не уверен, что мне не хватает, чтобы сгенерировать PDF.
$dompdf = new Dompdf();
$dompdf->set_option('defaultFont', 'Courier');
$dompdf->set_option('isHtml5ParserEnabled', true);
$html = '*<section id="main-container" class="main-container">Some title here</section>*'; // html ends. here
$html .= '**<link type="text/css" href="http://servicequeststaffing.com/application/css/main.css" rel="stylesheet" />**'; // external css included, I have tried to give it's relative path here but still did not work
$dompdf->loadHtml($html); // loading html