blockquote
must not be used for indentation.
blockquote
may be used for indentation.
blockquote
element is missing a cite
attribute.
blockquote
to indicate a quotation. Do not use it to create an indented effect on the page. blockquote
is a semantic element and using it improperly can confuse the user.
Question | Is the text enclosed by blockquote actually a quotation? |
---|---|
PASS | Text enclosed by blockquote is a quotation. |
FAIL | Text enclosed by blockquote is not a quotation. |
blockquote
element in the content.blockquote
element is really a quote.blockquote
element is a quote.blockquote
element should not be used to simply indent text.blockquote
element and replace it with other formatting elements or CSS.blockquote
has cite
attribute.
<!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 #100 - Negative</title> </head> <body> <blockquote cite="Pierre Elliot Trudeau, Hansard">If I have any sins to confess, I will tell them to my priest.</blockquote>. </body> </html>
blockquote
does not have cite
attribute.
<!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 #100 - Positive</title> </head> <body> <blockquote>If I have any sins to confess, I will tell them to my priest.</blockquote>. </body> </html>