バリデートで下記のエラーが出ます。なぜ出るのでしょうか?
doctype宣言、charsetはあるのですが、なぜ出るのでしょうか?

そういえばファイヤーバグの<!DOCTYPE html>が灰色になっています。

Error: The character encoding was not declared. Proceeding using
windows-1252.

Error: Start tag seen without seeing a doctype first. Expected e.g.
<!DOCTYPE html>. From line 1, column 1; to line 1, column 6
<html><body>

Error: Element head is missing a required instance of child element
title. From line 1, column 7; to line 1, column 12

ソース

<!DOCTYPE html>
<html lang="ja">
    <head>
        <meta charset="utf-8">
        <title>ああああああ</title>
        ~
    </head>