View topic - HTML Fonts for Japanese and Korean
HTML Fonts for Japanese and Korean
3 posts
• Page 1 of 1
HTML Fonts for Japanese and Korean
Are there any fonts for Japanese and Korean in HTML besides the weird default that looks like sloppy italics? I am using UTF-8, and the <font> tag.
(Yes, I know it's outdated, but it was the easiest to learn. I am still trying to feed my head with Japanese, Korean, Romanian, and other stuff, so CSS is having a hard time fitting.)
(Yes, I know it's outdated, but it was the easiest to learn. I am still trying to feed my head with Japanese, Korean, Romanian, and other stuff, so CSS is having a hard time fitting.)
Look to the skies and you'll find the heavens.
-

Ueshu - Posts: 32
- Joined: Fri 06.23.2006 10:20 am
- Location: U.S.
Re: HTML Fonts for Japanese and Korean
You can use any fonts you want in HTML. The problem with using a non-standard font is if someone accesses your page and does not have that particular font installed, it won't display. On the plus side, you can specify multiple fonts in a priority-type fashion so it will default eventually to the common denominator. It shouldn't be too hard to find a website that tells you how in html or css. That's how I learned it. I'm too lazy to type out all the info myself though. 
Good luck!
Good luck!
- Sairana
- Posts: 709
- Joined: Wed 02.27.2008 11:54 pm
- Native language: (US) English
- Gender: Female
Re: HTML Fonts for Japanese and Korean
There's a lit of basically standard fonts that most people have on their computers that can be used on websites without much fear of them not being able to see it - but it's best to use CSS so you can have a fall-back font. 'serif', 'sans-serif' and 'monospace' are the browser's fonts (the user's preference).
If you didn't know what serifs were:
http://en.wikipedia.org/wiki/Serif
The common fonts for English that are pretty safe to use:
http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
Here's a CSS code snippet you can use in the <head> of your document for fonts - this will change the font of everything on the page. See the list of fonts? They will be tried in order until they find a font that the computer has installed, and use that. Something that can't be done with the font tag
You can pick a list from the website above.
If you want only certain parts of your website to have a different font, try putting this between the <style> tags:
and then put class="myfont" where you would've put font="whatever" in your HTML. Easy peasy, now you have no excuse not to use CSS for fonts ;D It's a lot better, too, because it means you don't have to edit your whooooole page when you find a better font to use, you can just edit the CSS.
As for actual Japanese fonts that most Japanese computers will have installed - I don't actually know. It's something I never found out. However, most fonts with 'unicode' in their name should support it - as I think you may have already figured out.
Here on Wikipedia near the bottom of the pages, there's lists of common Japanese fonts for different styles of writing. If you know what OS your target audience might be using (probably Windows
) you could pick out fonts that are listed to be supported in Windows and use those:
http://en.wikipedia.org/wiki/East_Asian_gothic_typeface
http://en.wikipedia.org/wiki/Minch%C5%8D
I think it's mostly user preference, you can change the browser default fonts for Japanese to suit you. Here's how you do it in Firefox. But, sorry, I plainly refuse to use Internet Explorer (see http://browsehappy.com) so I can't help there:
Tools > options > content > under 'fonts & colours' click 'advanced'
In the top drop-down box, pick 'Japanese', and edit the fonts to your heart's content
If you didn't know what serifs were:
http://en.wikipedia.org/wiki/Serif
The common fonts for English that are pretty safe to use:
http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
Here's a CSS code snippet you can use in the <head> of your document for fonts - this will change the font of everything on the page. See the list of fonts? They will be tried in order until they find a font that the computer has installed, and use that. Something that can't be done with the font tag
- Code: Select all
<style type="text/css">
body {
font-family: (Tahoma, Geneva, sans-serif);
}
</style>
If you want only certain parts of your website to have a different font, try putting this between the <style> tags:
- Code: Select all
.myfont {
font-family: (Georgia, serif);
}
and then put class="myfont" where you would've put font="whatever" in your HTML. Easy peasy, now you have no excuse not to use CSS for fonts ;D It's a lot better, too, because it means you don't have to edit your whooooole page when you find a better font to use, you can just edit the CSS.
As for actual Japanese fonts that most Japanese computers will have installed - I don't actually know. It's something I never found out. However, most fonts with 'unicode' in their name should support it - as I think you may have already figured out.
Here on Wikipedia near the bottom of the pages, there's lists of common Japanese fonts for different styles of writing. If you know what OS your target audience might be using (probably Windows
http://en.wikipedia.org/wiki/East_Asian_gothic_typeface
http://en.wikipedia.org/wiki/Minch%C5%8D
I think it's mostly user preference, you can change the browser default fonts for Japanese to suit you. Here's how you do it in Firefox. But, sorry, I plainly refuse to use Internet Explorer (see http://browsehappy.com) so I can't help there:
Tools > options > content > under 'fonts & colours' click 'advanced'
In the top drop-down box, pick 'Japanese', and edit the fonts to your heart's content
-

kayuu - Posts: 105
- Joined: Mon 06.11.2007 5:38 pm
- Location: ロンドン、イギリス
- Native language: 英語
- Gender: Female
3 posts
• Page 1 of 1
Who is online
Users browsing this forum: No registered users and 4 guests







Click to sign up
