-
Notifications
You must be signed in to change notification settings - Fork 8
rule doctype
Hanxing Yang edited this page Jul 9, 2016
·
1 revision
doctype
The <!DOCTYPE>
declaration is needed and HTML5 is recommended. If not found or found not HTML5, it reports.
<!-- Bad -->
<html lang="zh-CN">
...
</html>
<!DOCTYPE HTML
PUBLIC "-//W3C//DTD HTML 4.01//en"
"http://www.w3. org/TR/html4/strict.dtd">
<html lang="zh-CN">
...
</html>
<!-- Good -->
<!DOCTYPE html>
<html lang="zh-CN">
...
</html>
-
009
The
<!DOCTYPE>
declaration is not found. -
041
The
<!DOCTYPE>
declaration is found not HTML5.
-
true
Do check / format.
-
false
Do not check / format.
Yes.