Skip to content

rule title required

Hanxing Yang edited this page Jul 10, 2016 · 2 revisions

name

title-required

description

<title> required and it should be just after <meta> charset (<meta charset="...">). If not found or in wrong position, it reports.

sample

<!-- Bad -->
<head></head>

<head>
    <title>sample</title>
    <meta charset="UTF-8">
</head>

<body>
    <title>sample</title>
</body>

<!-- Good -->
<head>
    <meta charset="UTF-8">
    <title>sample</title>
</head>

code

  • 024

    <title> not found.

  • 025

    <title> found in wrong position.

config

  • true

    Do check / format.

  • false

    Do not check / format.

format support

Yes.

Clone this wiki locally