2016-07-13 5 views
0

'のシンボルはhtml 4.01の電子メールニュースレターで別のシンボルに変わります。

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> 
 
<html> 
 
    <head> 
 
    
 
<title>Butiqs newsletter</title>

いくつかの内部CSSは次の続いて、最初のテーブルに次のテキスト:

<!--Tekst.--> 
 
<table id="inleiding" width="600" cellpadding="0" cellspacing="0"> 
 
<tr height="30"><td></td></tr> 
 

 
    <tr> 
 
    <td width="20"></td> 
 
     <td><font size="5">Hi yara,</font></td> 
 
    <td width="20"></td> 
 

 
</tr> 
 
<tr height="10"><td></td></tr> 
 
<tr> 
 
    <td width="20"></td> 
 
    <td><font>We are excited to have you as part of our Butiqs’ family and we’d like to keep you in the loop of our progress. So, without further ado, here’s where we are now, 5 months after we kickstarted the project… 
 
</font></td> 
 
    <td width="26"></td> 
 

 
    </tr> 
 
    <tr height="20"><td></td></tr> 
 
</table>

は今、奇妙なことは、私のテキストが完全に正常である、です。私がブラウザにプレビューしているときにだけ、私のテキストには奇妙な記号が見えます。

Image of the weird symbols

私はHTMLで」記号を使用する場合は、毎回起こります。何が問題ですか?私がそれを普通のHTMLのdoctypeにしても、問題は残っています。

誰かが私を助けることができますか?

答えて

0

あなたの頭のタグに <meta http-equiv="content-type" content="text/html; charset=UTF-8"> を配置する必要があります。

0

これはエンコードに問題があります。

あなたの<head>でこれを追加することで、これを固定しようとすることができます

<meta charset="utf-8" /> 

注:これは、HTML 5つの文書のためです。 HTML 4つの文書、使用のために

Read more here

:HTML 4.01の場合

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 

Read more here

関連する問題