<head>網頁標頭</head>

語法: <head>...HTML文件基本資訊...</head> (可省略開始、結束標籤)

 說明: <head>標籤放在<body>標籤前,用來說明HTML文件的一些基本資訊,譬如<head>標籤中的<title>是用來指定文件的標題;<link>標籤記錄文件的連結關係;<meta>標籤則用來記錄文件的一些基本資料。

 範例: <head>
    <meta http-equiv="Content-Type" content="text/html; charset=big5">
    <title>HTML語法介紹</title>
    <meta name="GENERATOR" content="Microsoft FrontPage 4.0">
</head>