Spelling List Generator

Spelling List Generator

Create customized "Look, Say, Cover, Write, Check" worksheets for any grade.

No words generated yet. Select a grade and click "Generate" or add words manually.

This is how your PDF worksheet will look.

Worksheet Details

Customize the header information for the printed worksheet.

Tip: You can use this tool to mix grade-level lists with specific vocabulary words relevant to your current science or history lessons.

Instructions: 1. Look at the word. 2. Say the word. 3. Cover the word. 4. Write the word. 5. Check your spelling.

`; // Rows if(slgCurrentList.length === 0) { html += ``; } else { slgCurrentList.forEach(word => { html += ` `; }); } html += `
Word 1st Try 2nd Try 3rd Try Check
No words selected.
${word}
Generated by Spelling List Generator
`; container.innerHTML = html; } function slgGeneratePDF() { // Ensure preview is up to date slgRenderPreview(); const element = document.getElementById('slg-pdf-content'); const title = document.getElementById('cfg-title').value || "Spelling_Sheet"; const opt = { margin: 0.5, filename: `${title.replace(/\s+/g, '_')}.pdf`, image: { type: 'jpeg', quality: 0.98 }, html2canvas: { scale: 2 }, jsPDF: { unit: 'in', format: 'letter', orientation: 'portrait' } }; // Use html2pdf library if (window.html2pdf) { html2pdf().set(opt).from(element).save(); } else { alert("PDF Generator is loading. Please try again in 2 seconds."); } }
Scroll to Top