Html meta 标签
meta 是 HTML Head 内部标签
<html> <head> <!-- meta标签:charset 指定字符编码 --> <meta charset="UTF-8"> <!-- meta标签:http-equiv="Refresh" 指定页面刷新,每三秒刷新一次 --> <meta http-equiv="Refresh" content="3"> <!-- meta标签:http-equiv="Refresh" 指定页面刷新,每三秒后自动跳转到指定网站 --> <meta http-equiv="Refresh" content="3;Url=http://www.baidu.com"> 注:http-equiv 可以用在对付应急跳转页面时使用。 <!-- meta标签:name="keywords" 搜索引擎网站关键字搜索 --> <meta name="keywords" content="搜索关键字"> <!-- meta标签: name="description" 写入网站描述信息 --> <meta name="description" content="描述信息"> <!-- meta标签: http-equiv="X-UA-Compatible 指定网站使用IE兼容新模式打开 --> <meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"> 注:ame="description" 可以简写 content="IE=E9;IE=E8;IE=E7" 从大到小,依次排列兼容。 </head> </html>