查看線上實例 - 定義了HTML文件的標題使用 標籤定義HTML文件的標題 < ;base> - 定義了所有連結的URL使用 定義頁面中所有連結預設的連結目標位址。 - 提供了HTML文檔的meta標記使用 元素來描述HTML文檔的描述,關鍵字,作者,字符集等。 HTML <head> 元素 元素包含了所有的頭部標籤元素。在 元素中你可以插入腳本(scripts), 樣式文件(CSS),及各種meta資訊。 可以加入頭部區域的元素標籤為: , , <meta>, <link>, <script>, <noscript>, and < base>.</p> <p style='margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;'>HTML <title> 元素</p> <p><title> 標籤定義了不同文件的標題。 </p> <p><title> 在 HTML/XHTML 文件中是必須的。 </p> <p><title> 元素:</p> <p>定義了瀏覽器工具列的標題</p> <p>當網頁加入到收藏夾時,顯示在收藏夾中的標題</p> <p>顯示在<a href="http://www.php.cn/code/8331.html" target="_blank">搜尋</a>引擎結果頁面的標題</p> <p>一個簡單的HTML 文件:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:css;toolbar:false"><!DOCTYPE html> <html> <head> <title>Title of the document</title> </head> <body> The content of the document...... </body> </html></pre><div class="contentsignin">登入後複製</div></div><p style="margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;">HTML <base> 元素</p><p>#< base> 標籤描述了基本的連結位址/連結目標,該標籤作為HTML文件中所有的連結標籤的預設連結:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <base href="www.php.cn/images/" target="_blank"> </head></pre><div class="contentsignin">登入後複製</div></div><p style="margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;">HTML <link> 元素</p><p>#<link>標籤定義了文件與外部資源之間的關係。 </p><p><link> 標籤通常用於連結到樣式表:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <link rel="stylesheet" type="text/css" href="mystyle.css"> </head></pre><div class="contentsignin">登入後複製</div></div><p style="margin: 20px 0px; padding: 5px 5px 5px 10px; font-weight: normal; font-family: Verdana, "Microsoft YaHei"; border-left: 5px solid rgb(255, 97, 0); background: rgb(255, 255, 255); font-size: 20px; color: rgb(69, 69, 69); white-space: normal;">HTML <style> 元素</p><p><style> 標籤定義了HTML文件的樣式文件<a href="http://www.php.cn/wiki/231.html" target="_blank">引用</a>網址.</p><p>在<style> 元素中你需要指定樣式檔來渲染HTML文件:</p><div class="code" style="position:relative; padding:0px; margin:0px;"><pre class="brush:html;toolbar:false"><head> <style type="text/css"> body {background-color:yellow} p {color:blue} 登入後複製HTML 元素meta標籤描述了一些基本的元資料。 標籤提供了元資料.元資料也不顯示在頁面上,但會被瀏覽器解析。 META元素通常用於指定網頁的描述,關鍵字,文件的最後修改時間,作者,和其他元資料。 元資料可以使用於瀏覽器(如何顯示內容或重新載入頁面),搜尋索引#擎(關鍵字),或其他網路服務。 一般放置於區域# 標籤- 使用實例為搜尋引擎定義關鍵字:登入後複製【相關推薦】 1. 特別推薦#:「php程式設計師工具箱」V0.1版本下載 2. 免費html線上影片教學 #3. php.cn原始html5影片教學