Some new websites that are using custom fonts on their sites (other than the regular Arial,Tahome).
Generically, you can use a custom font using @font-face in your CSS.
Here's a very basic example
Link for download good Font
fontsquirrel.com
Google Fonts
NOTE :
our font is cross-browser compatible, make sure that you use this syntax:
Generically, you can use a custom font using @font-face in your CSS.
Here's a very basic example
Link for download good Font
fontsquirrel.com
Google Fonts
I hope that helped!
NOTE :
our font is cross-browser compatible, make sure that you use this syntax:
@font-face {
font-family: 'Comfortaa Regular';
src: url('Comfortaa.eot');
src: local('Comfortaa Regular'),
local('Comfortaa'),
url('Comfortaa.ttf') format('truetype'),
url('Comfortaa.svg#font') format('svg');
}