This guide teaches how to build one interview entry from nothing. Every interview lives inside its own folder. The QR code always points to the webpage (index.html), not directly to the recording.
QR Code ↓ Website (index.html) ↓ Recording ↓ Fallback links (Dropbox / Google Drive / Transcript)
INT-001/ ├── index.html ├── INT-001.m4a ├── mitsunohane.jpg └── transcript.pdf (optional)
Keep every interview self-contained. The HTML looks for files inside its own folder.
Open Notepad and paste the interview HTML template. Save using:
Filename: index.html Save as type: All Files (*.*) Encoding: UTF-8
If Windows saves index.html.txt, enable File name extensions in File Explorer and rename it to index.html.
<source src="INT-001.m4a" type="audio/mp4">
The filename inside src="" must exactly match the recording in the folder.
<img src="mitsunohane.jpg" class="portrait">
The image filename must match exactly.
<a href="INT-001.m4a">Download Recording</a> <a href="DROPBOX_LINK">Dropbox Mirror</a> <a href="GOOGLE_DRIVE_LINK">Google Drive Mirror</a> <a href="transcript.pdf">Read Transcript</a>
Replace each href with the correct location.
Upload the entire interview folder to a static web host. Do not upload only index.html.
INT-001/ ├── index.html ├── INT-001.m4a ├── mitsunohane.jpg └── transcript.pdf
After publishing, copy the webpage URL and generate the QR code from that URL.
The next section explains the interview template itself, including every part of the HTML, how it works, and how to customize it for each family member.
Part I — Building an Archive Entry
Part II — Understanding the HTML Template
Part III — Frequently Asked Questions
Part IV — Troubleshooting
Part V — Maintenance
Currently Reading:
Part I - Building an Archive Entry