저장됨 ✓
Chalkboard Generator

Tribute Cinema

데이터 입력 → 방송용 HTML 코드 생성 (자동 저장)

인물 정보
재생 설정
1분
2분
3분

9개 섹션 × 2분 = 18분 러닝타임

생성된 HTML 코드
사용법:
1. [복사] → 새 HTML 파일에 붙여넣기
2. boards/이름-추모.html로 저장
3. GitHub에 푸시 → 라이브 URL로 녹화
`; } function copyCode() { const code = document.getElementById('outputCode'); code.select(); document.execCommand('copy'); alert('복사 완료!'); } function downloadCode() { const code = document.getElementById('outputCode').value; const name = state.subject.name || 'tribute'; const blob = new Blob([code], { type: 'text/html' }); const a = document.createElement('a'); a.href = URL.createObjectURL(blob); a.download = `${name}-tribute.html`; a.click(); } function previewCode() { const code = document.getElementById('outputCode').value; const win = window.open('', '_blank'); win.document.write(code); win.document.close(); } init();