index.html
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>PDFMake Example</title> <script src="https://cdn.tailwindcss.com"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.70/pdfmake.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.70/vfs_fonts.js"></script> </head> <body class="bg-gray-100 flex justify-center items-center h-screen"> <div class="bg-white p-8 rounded-lg shadow-lg text-center"> <h1 class="text-2xl font-bold mb-4">Generate PDF with pdfmake.js</h1> <p class="mb-6 text-gray-600">Click the button below to generate a multi-page PDF document:</p> <button id="generatePDF" class="bg-blue-500 text-white px-4 py-2 rounded-lg hover:bg-blue-600 transition">Download PDF</button> </div> </body> </html> |