I am generating a PDF file with TCPDF and I can not find a way to style the text using CSS. Can somebody help me?
Here's my code:
$pdf=new TCPDF();
$pdf->Addpage();
$pdf->SetFont('dejavusans', 'B', 20);
$pdf->Write(0, '', '', 0, 'L', true, 0, false, false, 0);
// create some HTML content
$html="<h2>Recibo </h2>";
$html.="Buenos Aires, 12 de Diciembre de 2017. ";
$html.="Recibimos de el Sr. NOMBRE con DNI XXXXXXXX, estado civil XXXXXX, con domicilio en XXXXX, XXXXX
XXXXXXX, la suma de XXXXXx.- (XXXXXX 00/100 ), en concepto de Cuota, de acuerdo a las condiciones
que constan en el Boleto de Adhesión al Fideicomiso.";
<?php
$pdf->Ln();
// set core font
$pdf->SetFont('helvetica', '', 10);
// output the HTML content
$pdf->Ln();
// set UTF-8 Unicode font
$pdf->SetFont('dejavusans', '', 10);
// output the HTML content
$pdf->writeHTML($html, true, 0, true, true);
// reset pointer to the last page
$pdf->lastPage();
// ---------------------------------------------------------
//Close and output PDF document
$pdf->Output('Recibo.pdf', 'I');
?>