A tag <blockquote> em HTML é usada para exibir as citações longas (uma seção que é citada de outra fonte). Ele muda o alinhamento para torná-lo único em relação aos outros. Ele contém tags de abertura e fechamento.

Sintaxe:

<blockquote> Contents... </blockquote>

Exemplo 1:

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to specify a text which 
        is an extended quotation?
    </title>
</head>
  
<body>
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        How to specify a text which 
        is an extended quotation?
    </h3>
  
    <blockquote>
        GeeksforGeeks: A computer 
        science portal for geeks
    </blockquote>
</body>
  
</html>

Saída:

Exemplo 2: Neste exemplo, adicionaremos o atributo cite. O atributo cite contém o URL que especifica a fonte da cotação.

<!DOCTYPE html>
<html>
  
<head>
    <title>
        How to specify a text which
        is an extended quotation?
    </title>
</head>
  
<body>
    <h1 style="color:green;">
        GeeksforGeeks
    </h1>
  
    <h3>
        How to specify a text which
        is an extended quotation?
    </h3>
  
    <blockquote cite = "www.geeksforgeeks.org">
        GeeksforGeeks: A computer
        science portal for geeks
    </blockquote>
</body>
  
</html>

Saída: