I have seen a few of the the websites using font family:
font-family: 'Helvetica Neue',Helvetica,Arial,Sans-Serif
I remember reading in some older question here on stackoverflow that the Helvetica font is not free, and it is available on Mac only, is it so? I'm using windows XP and I can see that Font being rendered is 'Helvetica Neue
', and I don't remember installing any font by myself. so all I wanted to ask is if it is safe to use the above font family? (eg. will most of the windows computers render those fonts? )
Thanks.
Helvetica
comes free with mac but not with windows. You will have to buy it. But if you have installed Adobe
products it will be installed with many other fonts that come packed with Adobe
.
'Helvetica Neue'
is the newer version and has slight modification than the older one with correction of few problems that occurred with helvetica
.
If you want to use any font in your website you can use this:
@font-face {
font-family: 'Helvetica Neue';
src: url('Helvetica-Neue-webfont.eot');
src: url('Helvetica-Neue-webfont.eot?#iefix') format('embedded-opentype'),
url('Helvetica-Neue-webfont.woff') format('woff'),
url('Helvetica-Neue-webfont.ttf') format('truetype'),
url('Helvetica-Neue-webfont.svg#Helvetica Neue') format('svg');
}
To use any paid fonts, you should buy the font and put it in your folder. Use this site to create all types of formats: http://www.fontsquirrel.com/
Helvetica Neue is not free with Windows. However, if you install Adobe software it will install an altered version which can cause problems.
All windows computers will render that font, if the font is introduced with @font-face in the CSS. With @font-face fonts can be used anywhere on the web page, even if the font isn't installed on the user's computer.
Helvetica Neue has been blacklisted from @font-face generators like fontsquirrel.
I think the font stack that is quoted in the first post is the best approach.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With