I am currently working on a website that displays text in Japanese. However, all the text looks strange when viewed in different browsers. The website is set to use the "Shift_JIS" charset. I have recently updated the code for the site, as it was originally coded with a table layout similar to an email template.
Here is the header of the site:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>Learning English Through Comics: ESL, EFL, TOEFL, FCE, TOIEC, IELTS</title>
All the text appears like this. Below is all the code used on the page:
<!doctype html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Shift_JIS">
<title>Learning English Through Comics: ESL, EFL, TOEFL, FCE, TOIEC, IELTS</title>
<!-- JavaScript and CSS Code -->
... (Code continues) ...
<!-- End of JavaScript and CSS Code -->
I need help fixing this issue. Any suggestions would be greatly appreciated. Thank you!