h3
is h1
, h2
, h3
or h4
.
h3
is incorrect.
h3
is h1
, h2
, h3
or h4
.
h3
element, find the header element that follows it.h3
is h1
, h2
, h3
or h4
.h3
is h1
, h2
, h3
or h4
.h4
follows an h3
<?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 #39 - Negative</title> </head> <body> <h3>The First Heading</h3> <p>Here is some demo text.</p> <h4>This Heading Is OK</h4> <p>Here is some more demo text.</p> </body> </html>
h5
follows an h3
<?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 #39 - Positive</title> </head> <body> <h3>The First Heading</h3> <p>Here is some demo text.</p> <h5>The bad Heading</h5> <p>Here is some more demo text.</p> </body> </html>