<!DOCTYPE html> <html> <head> <style> :root { --accent: #b59d5c; /* Gold accent for your porcelain rims */ --text: #222; --light-grey: #f4f4f4; } body { font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif; color: var(--text); line-height: 1.6; margin: 0; padding: 20px; background-color: #ffffff; } .cv-container { max-width: 900px; margin: 0 auto; } .section-title { font-size: 14px; letter-spacing: 3px; text-transform: uppercase; border-bottom: 1px solid #ddd; padding-bottom: 10px; margin-top: 40px; color: var(--accent); font-weight: bold; } .cv-row { display: flex; padding: 15px 0; border-bottom: 0.5px solid #eee; } .year { flex: 0 0 80px; font-weight: bold; font-size: 15px; } .content { flex: 1; } .title { font-style: italic; font-size: 16px; } .institution { font-weight: 500; display: block; font-size: 14px; } .award-badge { display: inline-block; background: var(--light-grey); padding: 2px 8px; font-size: 11px; text-transform: uppercase; margin-top: 5px; border-radius: 2px; } </style> </head> <body> <div class="cv-container"> <div class="section-title">Solo Exhibitions</div> <div class="cv-row"> <div class="year">2025</div> <div class="content"> <span class="title">The Past is the Future</span> <span class="institution">Sponsored Solo Exhibition, Hong Kong (Supported by HKADC)</span> </div> </div> <div class="cv-row"> <div class="year">2025</div> <div class="content"> <span class="title">Fragmentation 4745: The Wings of the Wind</span> <span class="institution">Kyotographie KG+, Kyoto, Japan</span> <div class="award-badge">Outstanding Exhibitor - KG+ SELECT</div> </div> </div> <div class="cv-row"> <div class="year">2023</div> <div class="content"> <span class="title">The Wings of the Wind</span> <span class="institution">Hong Kong Visual Arts Centre (vA!)</span> </div> </div> <div class="section-title">Curatorial Projects</div> <div class="cv-row"> <div class="year">2025</div> <div class="content"> <span class="title">Twenty-Four Vistas</span> <span class="institution">Curated for NGO (Supported by Social Welfare Department Arts Development Fund)</span> </div> </div> <div class="section-title">Grants & Recognition</div> <div class="cv-row"> <div class="year">2024</div> <div class="content"> <span class="institution">Cultural Exchange Project Grant (Czech Republic) — HKADC</span> </div> </div> <div class="cv-row"> <div class="year">2023</div> <div class="content"> <span class="institution">Emerging Artists Scheme — Hong Kong Arts Development Council</span> </div> </div> </div> </body> </html>








