I recently done this by using TCPDF. TCPDF is a further developed version of FPDF.
See this link for an expample regarding converting to PDF. Also, here you can find more examples. Example 61 could also come in quite handy.
Sample code which TCPDF uses:
$html = 'HTML Example
';
// output the HTML content
$pdf->writeHTML($html, true, false, true, false, '');