4

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?

Rob
  • 26,989
  • 16
  • 82
  • 98
The Gamer
  • 87
  • 1
  • 5

1 Answers1

3
    <blockquote>Anyone who has neber made a mistake has never tried anything new -
 <cite>Einstein</cite>
    </blockquote>
  • 2
    Thank you for the answer, but according to html 5 doctor `cite is to refer to a person, generally in connection with some reference or as the source of a quote:

    As George R. R. Martin wrote in…

    `
    – The Gamer Jun 08 '17 at 01:04
  • 1
    @TheGamer If I recall, on HTML5 Doctor you'll see your same question answered somewhere. – Rob Jun 08 '17 at 01:39