html5<footer>標籤
翻譯結果:
footer
英[ˈfʊtə(r)] 美[ˈfʊtɚ]
n.頁尾;高…英尺的人(或物)
vi.(蘇格蘭)擺弄,玩弄,摸弄
html5<footer>標籤語法
作用:<footer> 標籤定義 section 或 document 的頁尾。在典型情況下,此元素會包含創作者的姓名、文件的創作日期以及/或聯絡資訊。
註解:假如您使用 footer 來插入聯絡訊息,應該在 footer 元素內使用 <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>
#點擊 "執行實例" 按鈕查看線上實例