h6
elements are not used for formatting.
h6
may be used for formatting.
h6
may be used for formatting. Use the proper markup.
Question | Is this h6 element really a section header (not just used to format text)? |
---|---|
PASS | This h6 element is really a section header. |
FAIL | This h6 element is used to format text (not really a section header). |
h6
element.h6
elements are not used for formatting.h6
element and replace it with the appropriate text formatting elements.<?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 #47 - Negative</title> </head> <body> <p>This is <strong>very important</strong> and you should read it.</p> </body> </html>
<?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 #47 - Positive</title> </head> <body> <p>This is</p> <h6>very important</h6> <p>and you should read it.</p> </body> </html>