how to develop website in hindi

HTML, CSS and anything else that deals with client side capabilities.

Moderator: General Moderators

Locked
User avatar
nehrav
Forum Commoner
Posts: 38
Joined: Sun Sep 20, 2009 6:55 am
Location: New Delhi
Contact:

how to develop website in hindi

Post by nehrav »

Hi frndz,

May be, this question have been asked earlier also. I want to develop a website in hindi but don't know from where I should start.

anybody have better idea.....
User avatar
pickle
Briney Mod
Posts: 6445
Joined: Mon Jan 19, 2004 6:11 pm
Location: 53.01N x 112.48W
Contact:

Re: how to develop website in hindi

Post by pickle »

Aside from the tags themselves (<strong><body>, etc), a webpage doesn't have to be in English. The text you display to the use can be in any language.
Real programmers don't comment their code. If it was hard to write, it should be hard to understand.
User avatar
nehrav
Forum Commoner
Posts: 38
Joined: Sun Sep 20, 2009 6:55 am
Location: New Delhi
Contact:

Re: how to develop website in hindi

Post by nehrav »

ok, I got it, how to display hindi in simple HTML page but above this.

I want values in my input fields of form to be filled in hindi.
Now how to do that??......... :crazy:
User avatar
Apollo
Forum Regular
Posts: 794
Joined: Wed Apr 30, 2008 2:34 am

Re: how to develop website in hindi

Post by Apollo »

Same as you would do in English (or Klingon, for that matter). Except just type Hindi content :)

Try this:

Code: Select all

<input type='text' name='very_important_field' value='&#2361;&#2376;&#2354;&#2379;'>
User avatar
nehrav
Forum Commoner
Posts: 38
Joined: Sun Sep 20, 2009 6:55 am
Location: New Delhi
Contact:

Re: how to develop website in hindi

Post by nehrav »

you are getting me wrong, I dont want default value in hindi. I want values entered in text field to be displayed in hindi....... :crazy:
User avatar
jackpf
DevNet Resident
Posts: 2119
Joined: Sun Feb 15, 2009 7:22 pm
Location: Ipswich, UK

Re: how to develop website in hindi

Post by jackpf »

ha
User avatar
Apollo
Forum Regular
Posts: 794
Joined: Wed Apr 30, 2008 2:34 am

Re: how to develop website in hindi

Post by Apollo »

nehrav wrote:you are getting me wrong, I dont want default value in hindi. I want values entered in text field to be displayed in hindi....... :crazy:
Well, that's even easier.. try this:

Code: Select all

Hello dear visitor, please type something in Hindi here: <input type='text' name='message_from_user'>
Of course, the user needs to be visiting your site with a browser (and running an OS) that supports Hindi characters.
User avatar
mrvijayakumar
Forum Commoner
Posts: 58
Joined: Tue Aug 18, 2009 12:39 am
Location: Chennai city, India
Contact:

Re: how to develop website in hindi

Post by mrvijayakumar »

Try using google API -
http://code.google.com/apis/ajaxlanguag ... literation

For storing into Database, go through below URL,

http://www.vijayakumar.org/easy-multila ... g-php.html
manojsemwal1
Forum Contributor
Posts: 217
Joined: Mon Jun 29, 2009 4:13 am
Location: India

Re: how to develop website in hindi

Post by manojsemwal1 »

can we use .EOT for present data in any language.
User avatar
mrvijayakumar
Forum Commoner
Posts: 58
Joined: Tue Aug 18, 2009 12:39 am
Location: Chennai city, India
Contact:

Re: how to develop website in hindi

Post by mrvijayakumar »

I am not that much beware of .EOT fonts, These EOT fonts are designed by Microsoft. So, it will not works in Linux OS. So, better to follow my previous post. Previous answer of mines will be more flexible for all browsers.
User avatar
Christopher
Site Administrator
Posts: 13596
Joined: Wed Aug 25, 2004 7:54 pm
Location: New York, NY, US

Re: how to develop website in hindi

Post by Christopher »

You should be able to use UTF8 for this. Make sure your HTML character set, database encoding and any PHP library (e.g. database or output escaping) you use are set to UTF8.
(#10850)
priyankagound
Forum Commoner
Posts: 27
Joined: Thu Sep 19, 2013 2:53 am

Re: how to develop website in hindi

Post by priyankagound »

Try this one.

For get font in hindi you have to do something like this.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="hi" />
<title>Hindi Text Example</title>
</head>
<body>
कैसे हो?
</body>
</html>
kanwal22
Forum Newbie
Posts: 1
Joined: Wed Aug 13, 2014 5:51 am

Re: how to develop website in hindi

Post by kanwal22 »

very good hindi site i want to build hindi name website
Darrel
Forum Commoner
Posts: 33
Joined: Fri Oct 10, 2014 2:30 am

Re: how to develop website in hindi

Post by Darrel »

This is not difficult, you should add content in Hindi,...
Locked