Free Voucher Generator

Free Voucher Generator

by MR WebApp

MR WebApp Logo

MR WebApp – First Installment Fee Voucher

mrwebapp.com • +923100078066

Trainer: NAVTTC Trainer Ahmad Bin Obaid (Verified by LinkedIn, NAVTTC)


Voucher No: ${voucherNumber}
Date: ${voucherDate}

Student Name: ${studentName}
Contact: ${contactNumber}


Course Details

Course: Full Stack Marketing Course

Installment 1: PKR ${firstInstallment} (Registration Included)

Payment Details

Account Title: Ahmad Obaidullah
Bank: Meezan Bank
Account Number: 09040105386269
IBAN: PK39MEZN0009040105386269

Refund Policy

We will not leave you till your first customer. We teach marketing and run paid ads for you.

We will not leave you till your first customer.

Send via WhatsApp
`; const preview = document.getElementById("voucherPreview"); preview.innerHTML = html; preview.style.display = "block"; } async function downloadFirstVoucherPDF() { const { jsPDF } = window.jspdf; const voucher = document.getElementById("voucherContent"); const canvas = await html2canvas(voucher, { scale: 2, backgroundColor: '#ffffff' }); const imgData = canvas.toDataURL("image/png"); const pdf = new jsPDF("p", "mm", "a4"); const pdfWidth = pdf.internal.pageSize.getWidth(); const margin = 10; const contentWidth = pdfWidth - margin * 2; const contentHeight = (canvas.height * contentWidth) / canvas.width; pdf.addImage(imgData, "PNG", margin, margin, contentWidth, contentHeight); pdf.save("first-installment-voucher.pdf"); }