Kinda hard to disagree with Quoth when it is a simple example of what he/she's (sorry Quoth don't mean to assume

) seen...
But...I will disagree with your disagreement and raise you one "are you kidding me?!"
Blockquotes are semantically for a "long quote", of which you can include a citation, etc. Short quotes (within a paragraph) semantically should use <q> ...although I don't think I've ever seen this used in the wild - especially in fiction.
Blockquote:
Quote:
Definition and Usage
The <blockquote> tag specifies a section that is quoted from another source.
Browsers usually indent <blockquote> elements...
Tips and Notes
Tip: Use <q> for inline (short) quotations.
|
Offset text would be a <div>, usually surrounding a <p> (assuming multiple lines/paragraphs), unless it was a list item of some-such, then it would use <ol>/<ul> and <li> -or- <dl><dt><dd>, etc.
DIV:
Quote:
Definition and Usage
The <div> tag defines a division or a section in an HTML document.
The <div> tag is used as a container for HTML elements - which is then styled with CSS or manipulated with JavaScript.
The <div> tag is easily styled by using the class or id attribute.
Any sort of content can be put inside the <div> tag!
Note: By default, browsers always place a line break before and after the <div> element.
|