Print-ready 3.5×2 inch business card HTML. Use browser print to PDF.
<!DOCTYPE html>
<html><head><style>
@page { size: 3.5in 2in; margin: 0; }
body { font-family: Inter, system-ui, sans-serif; margin: 0; }
.card { width: 3.5in; height: 2in; padding: 0.25in; box-sizing: border-box; background: #fff; border-left: 0.1in solid #2563eb; display: flex; flex-direction: column; justify-content: space-between; }
.name { font-size: 16pt; font-weight: 700; color: #0f172a; }
.title { font-size: 10pt; color: #64748b; margin-top: 4px; }
.company { font-size: 12pt; font-weight: 600; color: #2563eb; }
.contact { font-size: 9pt; color: #475569; line-height: 1.4; margin-top: 4px; }
</style></head><body>
<div class="card">
<div>
<div class="name">Jane Doe</div>
<div class="title">VP Engineering</div>
</div>
<div>
<div class="company">Acme Inc</div>
<div class="contact">jane@acme.com<br>+1 555 0123</div>
</div>
</div>
</body></html>