I'm doing some webpage testings and having a problem with Vietnamese input.
The result going to be something like
đc ăn Noel ở
I tried some font like Arial and Times New Roman but none of them is helping me with this trouble. Any idea what font or what techniques I should use to avoid this?
For future references, is there a same way for another languages (like chinese...)
Edit:
This is my header code of the input page
<head>
<meta charset="utf-8"/>
<meta name="description" content="Tri Nguyen"/>
<meta name="keywords" content="HTML, CSS, Tri Nguyen, Tree Nguyen"/>
<meta name="author" content="Tri Nguyen"/>
<link rel="stylesheet" type="text/css" href="./style/message.css"/>
<link rel="shortcut icon" href="favicon.ico" />
<link rel="image_src" href="./tree.jpg" />
<script src="./JS/message.js"></script>
<title>Message</title>
</head>
And this is the HTML code for the input
<span id="maintext">What do you want to say ♥<br/><br/></span>
<textarea id="message" name="message" rows="6" ></textarea>
<br/>
Thanks!