Japan Web Site |
Build a web site in JapanLiving in Japan is no barrier to building a web site. It's easy! Just follow these simple steps.
NOTE: If you want to include Japanese characters in your HTML, you can use the code below as a frame-work and save your files as UTF-8 encoded.
Your HTML editor should give a choice of encodings (often found under File - Save As - Options).
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "https://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta name="language" content="Japanese"> <title></title> </head> <body"> <!-- Your code goes here --> </body> </html>If you use this code, Japanese enabled browsers should automatically detect and display Japanese unicode.
If you want your site to be accessable by Japanese cell-phones save your files as Shift-JIS encoded instead of UTF-8.
|
||||