Friday, November 3, 2023

Text to pdf converter

Text to PDF Converter

Text to PDF Converter

body { font-family: Arial, sans-serif; display: flex; justify-content: center; align-items: center; height: 100vh; margin: 0; } .converter { text-align: center; } h1 { color: #333; } textarea { width: 80%; height: 200px; margin: 20px 0; padding: 10px; font-size: 16px; } button { padding: 10px 20px; font-size: 16px; background-color: #3498db; color: #fff; border: none; border-radius: 5px; cursor: pointer; transition: background-color 0.3s; } button:hover { background-color: #2980b9; } function convertToPDF() { const text = document.getElementById('inputText').value; if (text.trim() !== '') { const docDefinition = { content: text }; pdfMake.createPdf(docDefinition).download('converted_text.pdf'); } else { alert('Please enter some text to convert!'); } }

No comments:

Post a Comment

Today,s tools

  Grammarly: Grammarly is a free grammar and spell checker that helps you write clear, error-free text. It is available as a browser ex...