天天看點

footer元素

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>foot</title>
<style>
    *{margin:0;
    padding:0;
    }
    body{
        font-family:微軟雅黑;
        text-align:center;
    }
    #footer,#footer a{
        color:#555;
    }
</style>
</head>
<body>
<div id="footer">
<p>
    <a href="#">版權資訊</a>|
    <a href="#">關于我們</a>|
    <a href="#">聯系我們</a>|
    <a href="#">站點地圖</a>|
</p>
<p>麥子學院版權所有</p>
</div>
</body>
</html>      

在html5中

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>foot</title>
<style>
    *{margin:0;
    padding:0;
    }
    body{
        font-family:微軟雅黑;
        text-align:center;
    }
  footer,footer a{
        color:#555;
    }
</style>
</head>
<body>
<!--<div id="footer">-->
<footer>
<p>
    <a href="#">版權資訊</a>|
    <a href="#">關于我們</a>|
    <a href="#">聯系我們</a>|
    <a href="#">站點地圖</a>|
</p>
<p>麥子學院版權所有</p>
<!--</div>-->  
</footer>
</body>
</html>      
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<article>
    <p>文章内容</p>
    <footer>
        文章的腳步注釋
    </footer>
</article>
<section>
    <p>文章内容</p>
    <footer>文章的腳步注釋</footer>
</section>
</body>
</html>