語法: <html>........</html> (可以省略開始、結束標籤)

 說明: <html>標籤是用以指明HTML文件的最開端和結尾。除了宣告文件類型的<!doctype>之外,所有其他html的標籤都必須包含在這個標籤之內。

 範例: <html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=big5">
        <title>New Page 1</title>
        <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
    </head>
    <body>
        <p>這是我的烘焙雞(HomePage)
    </body>
</html>