HTML檔案基本標記(一)-、、
阿新 • • 發佈:2019-02-11
關於HTML檔案head、title、meta標記的使用
<!DOCTYPE html>
<html>
<head>
<!-- HTML使用http-equiv來設定標頭屬性名稱;使用charset來設定網頁的內碼語系 -->
<meta charset="UTF-8">
<!--HTML使用name定義keyword來設定網頁的關鍵字屬性 -->
<meta name="keyword" content="html,基本標記">
<!-- HTML使用name定義description來設定網頁的資訊描述 -->
<meta name="description" content="關於HTML檔案的基本標記">
<!-- HTML使用name定義generator來設定網頁的編輯軟體名稱 -->
<meta name="generator" content="eclipse">
<!-- HTML使用name定義author來設定網頁的作者資訊 -->
<meta name="author" content="劉昕">
<!-- HTML使用name定義robots來限制網頁的搜尋方式 -->
<!-- All:表示能搜尋當前網頁及其連結的網頁 -->
<!-- Index:表示能搜尋當前網頁 -->
<!-- Nofollow:表示不能搜尋當前網頁連結的網頁 -->
<!-- Noindex:表示不能搜尋當前網頁 -->
<!-- None:表示不能搜尋當前網頁及其連結的網頁 -->
<meta name="robots" content="Index">
<!-- HTML使用http-equiv來定義refresh來設定網頁的跳轉時間;content中設定時間(秒)與跳轉連結 -->
<meta http-equiv="refresh" content="3;url=https://www.baidu.com" >
<!-- HTML使用http-equiv來定義expires來設定網頁的有效期限;content中設定時間(GMT格式:星期,日 月 年 時 分 秒) -->
<meta http-equiv="expiresh"
content="Thurs,31 December 2099 23:59:59 GMT">
<!-- HTML使用http-equiv來定義cache-control/pragma來設定網頁快取屬性;content使用no-cache來設定禁止從快取中呼叫 -->
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<!-- HTML使用http-equin來定義set-cookie來設定網頁刪除過期的cookie;content中為網頁過期的時間,若網頁過期則刪除存檔的cookie -->
<meta http-equiv="set-cookie"
content="Thurs,31 December 2099 23:59:59 GMT">
<!-- HTML使用http-equiv來定義windows-target來設定網頁的開啟方式;content使用_top設定為開啟的是一個獨立頁面 -->
<!-- 該meta可以防止自己的頁面被別人當作一個frame頁呼叫 -->
<meta http-equiv="windows-target" content="_top">
<title>HTML檔案的基本標記</title>
</head>
<body>
<h1 style="text-align: center;">頭部標記</h1>
<p align="center">
base:當前文件的URL全稱(基底網址);<br />
</p>
<p align="center">
basefont:設定基準的文字字型、字號和顏色;<br />
</p>
<p align="center">
title:設定顯示在瀏覽器左上方的標題內容;<br />
</p>
<p align="center">
isindex:表明該文件是一個可以用於檢索的閘道器指令碼,由伺服器自動建立;<br />
</p>
<p align="center">
meta:有關文件本身的元資訊,如用於查詢的關鍵字、獲取該文件的有效期等;<br />
</p>
<p align="center">
style:設定CSS層疊樣式表的內容;<br />
</p>
<p align="center">
link:設定外部檔案的連線;<br />
</p>
<p align="center">
script:設定頁面中程式指令碼的內容;<br />
</p>
<br />
<br />
<br />
<h2 style="text-align: center; color: red;">
<a
href="file:\\\D:\eclipse\workspace\MyPage\HTML_BasicMarkup\ToBeContinue.html">下一頁</a>
</h2>
</body>
</html>