Hi.

I just wanted to share a quick tip for you Web Designers out there.

This snippet of CSS makes the text on your website look very nice:

See the Pen
Sexy Text Rendering in CSS
by Brad Hussey (@bradhussey)
on CodePen.

I recommend using it like so:

body {
-webkit-font-smoothing: antialiased;
text-rendering: optimizelegibility;
}

I use it on every site I build. I recommend you use it as well!