print('Hello world!')from fpdf import FPDF

# Create a PDF class
class PDF(FPDF):
    def header(self):
        self.set_font('Arial', 'B', 12)
        self.cell(0, 10, 'المصطلحات التقنية المتعلقة بالكاميرات', 0, 1, 'C')

    def footer(self):
        self.set_y(-15)
        self.set_font('Arial', 'I', 8)
        self.cell(0, 10, f'صف

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: