Hi frnds I come across to add anew font file to my website, With a little research i meet with the solution as follows:
Step 1: Make a dir with name font and save the font files.
Step 2: In the css file add this as body font face.
Here I used font CronosPro font for my website
@font-face {
font-family: ‘Conv_CronosPro-Regular’;
src: url(‘../fonts/CronosPro-Regular.eot’);
src: local(‘?’), url(‘../fonts/CronosPro-Regular.woff’) format(‘woff’), url(‘../fonts/CronosPro-Regular.ttf’) format(‘truetype’), url(‘../fonts/CronosPro-Regular.svg’) format(‘svg’);
font-weight: normal;
font-style: normal;
font-size:12px;
}
Hope this help you out….
