Sewing Pattern Symbol Reference Chart – Free Download Tool
`;
// Create blob and download
const blob = new Blob([chartContent], { type: 'text/html' });
const url = window.URL.createObjectURL(blob);
const a = document.createElement('a');
a.style.display = 'none';
a.href = url;
a.download = 'sewing-pattern-symbol-reference-chart.html';
document.body.appendChild(a);
a.click();
window.URL.revokeObjectURL(url);
document.body.removeChild(a);
// Show confirmation
alert('Chart downloaded! Open the HTML file in your browser and print it for your sewing area.');
}