<!DOCTYPE html> <html> <head> <style> body { font-size: 24pt; font-family: "PT Sans"; font-weight: bold; } #a { text-rendering: optimizelegibility; } #b { text-rendering: geometricprecision; } #c { text-rendering: optimizespeed; } </style> </head> <body> <div id=a>Harry finally caught the Snitch.</div> <div id=b>Harry finally caught the Snitch.</div> <div id=c>Harry finally caught the Snitch.</div> </body> </html>