I use custom fonts on my web page using the following code:
@font-face {
font-family: 'HelveticaNeueBold';
src: url('fonts/HelveticaNeueBold.eot');
src: url('fonts/HelveticaNeueBold.eot?#iefix') format('embedded-opentype'),
url('fonts/HelveticaNeueBold.woff') format('woff'),
url('fonts/HelveticaNeueBold.ttf') format('truetype'),
url('fonts/HelveticaNeueBold.svg#HelveticaNeueBold') format('svg');
font-weight: normal;
font-style: normal;
}
This works fine in all browsers on a Mac, but looking at it on a PC in Chrome and Safari, it looks jagged. Are there any fixes that I could use to make everything look the same? Below is the difference (Mac on the left, PC on the right - like in Chrome).

source
share