Present I see lot of web sites use true type fonts. I want to to know how to use true type fonts in our applications and does it affect the load time of the
HTML5 allows to use TTF fonts in your CSS:
@font-face { font-family: 'Tagesschrift'; src: url('tagesschrift.ttf'); }
To use it:
h1, h2, h3 { font-family: 'Tagesschrift', 'Georgia', serif; }
Check more information in html5rocks.