h1
is h1
or h2
.
h1
is incorrect.
h1
or h2
follows h1
.
h1
element, find the header element that follows it.h1
is h1
or h2
.h1
or h2
elements follow h1
elements.h2
follows an h1
<?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 #37 - Negative</title> </head> <body> <h1>The First Heading</h1> <p>Here is some demo text.</p> <h2>The Second Heading</h2> <p>Here is some more demo text.</p> </body> </html>
h3
follows an h1
<?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 #37 - Positive</title> </head> <body> <h1>The First Heading</h1> <p>Here is some demo text.</p> <div><div><h3>The bad Heading</h3></div></div> <p>Here is some more demo text.</p> </body> </html>