'符号在HTML 4.01电子邮件通讯中变成了不同的符号,该怎么办?

时间:2016-07-13 14:49:55

标签: html html-table html4

<!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,问题仍然存在。

有人可以帮助我吗?

2 个答案:

答案 0 :(得分:0)

这是您的编码问题。

您可以尝试通过在<head>

中添加此内容来解决此问题
<meta charset="utf-8" /> 

注意:这适用于HTML 5文档。

Read more here

对于HTML 4文档,请使用:

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

Read more here

答案 1 :(得分:0)

对于Html 4.01,您需要放置 <meta http-equiv="content-type" content="text/html; charset=UTF-8"> 在你的头标记。