|
I want to simply list the name of the person who made to the quote, no href at all. Im just wondering the correct CSS/ XHTML structure for this, if there is a way to implicitly link to quote with who it was made by.
For example, the <table> tag can contain a <caption> tag, which is used to give the table a title. That title is then implicitly linked to the table and is therefore semantically superior to writing, say, <h2> followed by <table> (where there would be no implicit link). I would have thought something similar would exist with <blockquote>, so we can, say, put <author> inside <blockquote> to implicitly link the quote with the author. In my code above there is no link between the the quote and the source (apart from what can be implied by the viewer of the page).
The link you posted seems to just use javascript to append the contents of the 'title' field to the end of the quote, which semantically is probably worse than what im doing right now.
|