Search code examples
htmlsemantic-markupblockquote

What goes inside of an html blockquote tag to indicate the author?


I have a blockquote tag, is there a semantic tag I could put inside for the author name? For example:

<blockquote>Anyone who has neber made a mistake has never tried anything new 
-<author>Einstein</author>
</blockquote>

<author> is not an actual html tag, is there any appropriate tag?


Solution

  •     <blockquote>Anyone who has neber made a mistake has never tried anything new -
     <cite>Einstein</cite>
        </blockquote>