HTML <footer> 結尾/頁尾區塊
<footer> 標籤 (tag) 用來定義一個頁尾或結尾區塊,常見的 footer 是網頁最下面的頁尾區塊會包含作者、版權、聯絡方式等資訊。
一個網頁中除了可以有主要的網頁頁尾 (page footer) 區塊外,<article>, <section>, <aside>, <nav> 這些 HTML 語意區塊中都可以有自己的 <footer>。
舉個例子:
<body>
<section>
<!-- stuff -->
<footer>
<!-- A footer for the section. -->
</footer>
</section>
<footer>
<p>© 2020 Fooish</p>
<!-- A footer for the page. -->
</footer>
</body>
<footer> 雖然英文叫做 footer,但並不是說在排版上一定要放在最下面喔。