<meta>設定與文件內容的相關資訊.......只能放在<head>.......</head>標籤內

屬性 說明
content 與http-equiv或name相關的資訊
http-equiv="refresh" 自動更新文件的內容
http-equiv="content-type" 設定文件的類型
語法  <meta http-equiv="refresh" content="10;url=http://cyming.asjh.tn.edu.tw/default.asp" >
說明  10秒後自動連到http://cyming.asjh.tn.edu.tw/default.asp這個網頁
語法 <meta http-equiv="content-type" content="text/html;charset=big5" >
說明  通知瀏覽器,這份網頁是以BIG-5編碼的
語法: <meta
    [http-equiv=name]
    [name=name]
    content=string
>
(不可省略結束標籤)

 說明: 如果你有一些關於文件屬性的資訊(譬如文件的時效、關鍵字、文件修訂狀態等),無法以其他標籤表達,可以將這些訊息定義在<meta>標籤,以供伺服器、瀏覽器或是特定的工具程式使用。<meta>必須置於<head>中,以欄位名稱及欄位值的配對關係構成。欄位名稱以name或http-equiv指定,欄位值以content指定。

 範例: <head>
    <meta http-equiv="refresh" content="10;url=http://www.asjh.tn.edu.tw">
    <title>搬家了</title>
</head>
<body>
    <p>我們已經搬家了,請等候十秒鐘之後,瀏覽器會自動載入<br>
    或直接<a href="http://www.asjh.tn.edu.tw">按這裡</a>馬上進入 </p>
</body>

上列之範例程式,用來指定開啟網頁後,自動在10秒後連結到url所指定的網頁