← 뒤로 가기

🏷️ 메타태그 생성기

SEO와 소셜 미디어를 위한 메타태그를 생성하세요

📝 기본 정보

복사되었습니다! 📋

${escapeHtml(title)}

`; const blob = new Blob([html], { type: 'text/html' }); const url = URL.createObjectURL(blob); const a = document.createElement('a'); a.href = url; a.download = 'index.html'; a.click(); URL.revokeObjectURL(url); } function clearForm() { document.querySelectorAll('input, textarea').forEach(el => { if (el.id === 'type') el.value = 'website'; else if (el.id === 'twitterCard') el.value = 'summary_large_image'; else if (el.id === 'language') el.value = 'ko'; else el.value = ''; }); document.getElementById('result').style.display = 'none'; } function showToast() { const toast = document.getElementById('toast'); toast.classList.add('show'); setTimeout(() => toast.classList.remove('show'), 2000); } // 샘플 데이터 document.getElementById('title').value = '나의 멋진 웹사이트'; document.getElementById('description').value = '이곳에서 유용한 정보와 도구를 만나보세요'; document.getElementById('url').value = 'https://eastsea.monster';