La etiqueta <blockquote> en HTML se usa para mostrar las citas largas (una sección que se cita de otra fuente). Cambia la alineación para que sea único de los demás. Contiene etiquetas de apertura y cierre.
Sintaxis:
<blockquote> Contents... </blockquote>
Ejemplo 1:
HTML
<!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>
Producción:
Ejemplo 2: En este ejemplo, agregaremos el atributo cite. El atributo de cita contiene la URL que especifica la fuente de la cita.
HTML
<!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>
Producción: