1. 程式人生 > >一個標準的HTML5語義化頁面

一個標準的HTML5語義化頁面

<!DOCTYPE html>
<html>
<head>
    <title>Page title</title>
</head>
<body>
    <header>
        <h1>Page title</h1>
    </header>
    <nav>
        <!--Navigation-->
    </nav>
    <section id="intro">
        <!--Introduction-->
</section> <section> <!--Main content area--> </section> <aside> <!--Sidebar--> </aside> <footer> <!--Footer--> </footer> </body> </html>