h5
is h6
or any header less than h6
.
h5
is incorrect.
h6
follows h5
.
h5
element, find the header element that follows it.h5
is h6
or any header less than h6
.h6
or any header less than h6
follows h5
headers.h6
follows an h5
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #41 - Negative</title> </head> <body> <h5>The First Heading</h5> <h6>The Second Heading</h6> </body> </html>
h6
follows an h4
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN""http://www.w3.org/TR/REC-html40/loose.dtd"> <html lang="en"> <head> <title>OAC Testfile - Check #41 - Positive</title> </head> <body> <h4>The First Heading</h4> <h6>The Second Heading</h6> </body> </html>