在网页上,放置指向txt文件的链接,并将文件的编码指定为utf-8

时间:2019-03-09 14:58:46

标签: html character-encoding

现在的代码是:

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

    <span lang="en-us"><a href="russian.txt">txt</a> - </span>

如何插入charset =“ utf-8”属性?

1 个答案:

答案 0 :(得分:1)

您应该使用字符集命令将整个文档声明为UTF-8

<head></head>之间添加此内容:
<meta charset="utf-8"/>