h4
is h1
, h2
, h3
, h4
or h5
.
h4
is incorrect.
h4
is h1
, h2
, h3
, h4
or h5
.
h4
element, find the header element that follows it.h4
is h1
, h2
, h3
, h4
or h5
.h4
is h1
, h2
, h3
, h4
or h5
.h5
follows an h4
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>OAC Testfile - Check #40 - Negative</title> </head> <body> <h4>The First Heading</h4> <p>Here is some demo text.</p> <h5>This Heading Is OK</h5> <p>Here is some more demo text.</p> </body> </html>
h6
follows an h4
<?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <meta http-equiv="Content-Type" content="text/xhtml; charset=UTF-8" /> <title>OAC Testfile - Check #40 - Positive</title> </head> <body> <h4>The First Heading</h4> <p>Here is some demo text.</p> <h6>The bad Heading</h6> <p>Here is some more demo text.</p> </body> </html>