utf 8 - Using Turkish Chars on HTML page -
i think charset:windows-1254 should make turkish chars available on page dont come, here full code:
<html><head> <meta http-equiv="content-type" content="text/html; charset=windows-1254"> <title>marmara İnşaat</title> </head> <body topmargin="0" leftmargin="0" rightmargin="0" bottommargin="0" marginheight="0" marginwidth="0" bgcolor="#ffffff"> <table border="0" width="100%" cellspacing="0" cellpadding="0" background="img/topbkg.gif"> <tr> <td width="50%"><img border="0" src="img/toplogo.gif" width="142" height="66"></td> <td width="50%"> <p align="right"><img border="0" src="img/topright.gif" width="327" height="66"> </td> </tr> </table> <table border="0" width="100%" cellspacing="0" cellpadding="0" background="img/blackline.gif"> <tr> <td width="100%"><font color="#b8c0f0" face="arial" size="2"><b> ana sayfa </b></font></td> </tr> </table> <p style="margin-left: 20"><b><font color="#b8c0f0" face="arial" size="20"> </font></b><font face="arial" size="20" color="#0000ff"><p><b>tüm müşterilerimizin ramazan bayramı kutlu olsun!</b></p> <p><b>mutlu bayramlar.</b></p> </font></p> <p style="margin-left: 20"><font face="arial" size="2" color="#000000"> </font></p> <p style="margin-left: 20"><font face="arial" size="2" color="#000000"> </font></p> <p style="margin-left: 20"><font face="arial" size="2" color="#000000"> </font></p> <p style="margin-left: 20"><font face="arial" size="2" color="#000000"> </font> </p> <p style="margin-left: 20" align="center"><font face="arial" color="#000000" size="1">© tüm haklari saklidir www.marmarains.com</font></p> <p style="margin-right: 20" align="right"><font face="arial" color="#000000" size="1"> <br>marmara İnşaat,dekorasyon,gida<br></font></p> <table border="0" width="100%" cellspacing="0" cellpadding="0" background="img/botline.gif"> <tr> <td width="100%"><img border="0" src="img/botline.gif" width="41" height="12"></td> </tr> </table> </body> </html>
for example instead of "marmara insaat" have "marmara İnşaat"
thanks!
the document has not been saved in windows-1254 encoding. many programs cannot produce data in encoding. when written in encoding, page works (well, in respect; there coding errors in other areas there.
it (and officially) advisable use utf-8 instead, have done, according comment. this, too, requires match between actual encoding (in data saved) , declared encoding (as per meta
tag or otherwise).
Comments
Post a Comment