PDA

View Full Version : help me developing hindi web site



moranil
February 27th, 2006, 05:05 PM
hi
all the great jat software site builder....

i am currently developing a hindi web site. but i do not know how to download hindi font dynamically form the server.
the solution must be like that user do not have to download the hindi font on his system in order to view the site.

i am looking for the solution like http://www.rajbhasha.com/

mkm_jat
March 10th, 2006, 05:38 PM
RAM_RAM ji
I can do but you can also do with a little effort.
As you have given reference of www.rajbhasha.com which is created using CSS (casecading style sheets) which are used for defining your own styles for text etc, and directly applied.
If you know a bit of HTML then please view the source of the site n page which you given as reference n study that you will be able to do same.
At this moment I'm very sorry to say that I can't help you more than this much...
With thanks n regards
Manoj Kumar Mahala

yogeshjagal
March 10th, 2006, 08:00 PM
Hi Anil,

You have to use Embedded Font the way your reference site www.rajbhasha.com (http://www.rajbhasha.com) is using. Basically, you have to tell the browser to take font information from a .eot file at the web server.

Look at the src element in the style tag below.
<STYLE>
@font-face {font-family: "MyFont"; src: url(FontSourceFile.eot)}
H1 {font-family: "Verdana", "MyFont"}
</STYLE>

Please search for 'eot' + 'embedded font' in google and you will get many links leading to tutorials. Here are some links:
http://msdn.microsoft.com/workshop/author/fontembed/font_embed.asp
http://www.bearzcave.com/embedeottutorial.htm
http://www.ssi-developer.net/design/embed-font.shtml

Once you understand the concept it is very very simple.

All the best!
Yogesh