Header()
class PDF extends FPDF
{
function Header()
{
// Police Arial gras 15
$this->SetFont('Arial','B',15);
// Décalage
$this->Cell(80);
// Titre encadré
$this->Cell(30,10,'Titre',1,0,'C');
// Saut de ligne
$this->Ln(20);
}
}