footer

英[?f?t?(r)]? ?美[?f?t?]??

n.頁尾;高…英尺的人(或物)

vi.(蘇格蘭)擺弄,玩弄,摸弄

html5<footer>標籤 語法

作用:<footer> 標籤定義 section 或 document 的頁尾。在典型情況下,此元素會包含創(chuàng)作者的姓名、文件的創(chuàng)作日期以及/或聯(lián)絡(luò)資訊。

註解:假如您使用 footer 來插入聯(lián)絡(luò)訊息,應(yīng)該在 footer 元素內(nèi)使用 <address> 元素。

html5<footer>標籤 範例

<!DOCTYPE html>
<html>
<body>

<footer>
  <p>Posted by: Hege Refsnes</p>
  <p>Contact information: <a href="mailto:someone@example.com">
  someone@example.com</a>.</p>
</footer>

</body>
</html>
執(zhí)行實例 ?

#點擊 "執(zhí)行實例" 按鈕查看線上實例

#