Forum Moderators: open
Thank you very much for your help
Maybe part of the problem was that I tried to create the Korean pages based on the template that I previously created for the english site.
Again, thank you very much, without your hint, I wouldn't be able to do the right research.
Cheers.
You definitely need to use the correct META Content-Type tag. UTF-8 may work for the most part, depending on how the characters on your page are encoded. EUC-KR is another common one, specifically for the Korean language.
I want to create the site and I want to create it the right way, so any more info will be highly appreciated. I'm not an HTML code expert.
Thanks a lot.
You should always declare the charset and document language. For the charset, you use the meta element as you have now - just make sure it is placed above the title element. To define the language, it is best practice to simpy add the
lang attribute to the html element rather than using a meta element: <html [b]lang="ko"[/b]> Other than that, the document will function in much the same way as an English-language document. One note about non-western alphabets - you should define the text direction with the
dir attribute if the text is read other than from left to right. So for right-to-left text (Hebrew or Arabic, for example), you do this: <html [b]dir="rtl"[/b]> (RTL=right-to-left, LTR=left-to-right)
Some useful references from the forum library [webmasterworld.com]:
[webmasterworld.com...]