HTML_check code_smell: form tag should not exist in the head tag

Could team consider this following rule?

  • description of the Rule: form tag should not exist in the head tag. Some cybersecurity platforms such as Akamai will disable script in head tag. It leads abnormal result on screen.
  • snippet of Noncompliant Code
<html>
<head>
...
<form>
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" name="fname">
</form>
...
</head>
<body>
...
</body>
</html>
  • snippet of Compilant Code (fixing the above noncompliant code)
<html>
<head>
...
</head>
<body>
...
<form>
  <label for="fname">First name:</label><br>
  <input type="text" id="fname" name="fname">
</form>
...
</body>
</html>

Thanks,

Anyone can help me check this rule.
And why it’s not available in current rule set of html check.

Thanks,