Html meta 標籤html
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>