I used to just use p and span elements for this... but I'm always pushing to use the right elements, and this is something I haven't really thought about before with regard to testimonials.
This is what I had in mind
<div class="testimonial">
<blockquote>i love your products</blockquote>
<span>Jim Testimonial-giver</span>
</div>
Does that look like the best way to do this? Is there a best practise? I looked at how the W3C markup testimonials on their site, and they have done it like this:
<blockquote>
<p>
<a id="aptest" name="aptest">Applied Testin.....</a>
<br />
<span class="QuoteAttr">-- Shane P. M...</span>
</p>
</blockquote>
Should I just copy how the W3C did it, after all shouldn't they be correct?