1.
Html程式碼
<head> <base href="http://www.w3school.com.cn/tags/"> <base target="_blank" /> <!--页面中所有target默认为_blank--> </head> <body> <a href="tag_base.asp">base </a> <br> <!--实际指向http://www.w3school.com.cn/tags/tag_base.asp 且target为_blank --> <a href="tag_audio.asp">audio </a> </body>
target可選的屬性:
_blank
_parent
_self
_top
##2. 標籤定義文件與外部資源的關係。最常見的用途是連結樣式表。
Html程式碼
<head> <link rel="stylesheet" type="text/css" href="theme.css" /> <link rel="shortcut icon" href="http://jquery.com/jquery-wp-content/themes/jquery.com/i/favicon.ico"> </head>
rel 可選的屬性有:
alternate
author
help
icon
licence
##1 #next
pingback
prefetch
prev
search
sidebar
stylesheet
tag
#3. 聯的名稱/值對,例如針對搜尋引擎和更新頻度的描述和關鍵字。 標籤沒有結束標籤,但必須正確地被關閉()。
<head> <meta http-equiv="Content-Type" Content="text/html; charset=UTF-8" /> <meta name="keywords" content="HTML,ASP,PHP,SQL"> </head>
4.