Hi all ,
I’m facing a problem … which I can’t understand .
Arabic numbers doesn’t dispaly well in web page…
After some googling, I found this code which displayed arabic numbers well …
[COLOR=#800080]<!DOCTYPE html PUBLIC “-//W3C//DTD HTML 4.0 Final//EN”>[/COLOR][COLOR=#000000]
[/COLOR]
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<style type="text/css">
body { direction: rtl; }
</style>
</head>
<body>
۴۲
</body>
</html>
But I found that , If I write any other number in the same page , it’s dislayed in english !!And if I copy number from the already written in the previous code, it’s displayed in arabic !
and this is my tiral (In which the copied numbers are displayed in english while the written numbers are displayed in arabic) :
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Final//EN">
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <style type="text/css"> body { direction: rtl; } </style> </head>
<body> مصطفى
22 ۲ 2
۲ ۲ </body></html>
Thanks for any trial to help …