Print-ready HTML letterhead with branded header and footer. Use browser print to save as PDF.
<!DOCTYPE html>
<html><head><style>
@page { size: letter; margin: 1in; }
body { font-family: Georgia, serif; color: #1f2937; }
header { border-bottom: 3px solid #2563eb; padding-bottom: 16px; margin-bottom: 32px; }
h1 { margin: 0; color: #0f172a; font-size: 22px; }
.meta { color: #64748b; font-size: 13px; margin-top: 4px; }
main { line-height: 1.7; white-space: pre-wrap; }
footer { border-top: 1px solid #cbd5e1; margin-top: 60px; padding-top: 12px; color: #64748b; font-size: 12px; text-align: center; }
</style></head><body>
<header>
<h1>Acme Inc</h1>
<div class="meta">123 Main St · City, ST 12345</div>
<div class="meta">hello@acme.com · +1 555 0123 · acme.com</div>
</header>
<main>Dear recipient,
This is the body of the letter.
Sincerely,
Jane Doe</main>
<footer>Acme Inc · 123 Main St · City, ST 12345</footer>
</body></html>