English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية

Manual de Referência HTML

大全 de Tags HTML

Etiqueta <blockquote> do HTML

A tag <blockquote> do HTML define uma citação longa de outra fonte no documento HTML. Tradicionalmente, os navegadores apresentam o texto encontrado na tag <blockquote> como texto alinhado. Este rótulo também é conhecido como elemento <blockquote>.

Exemplo online

Defina uma citação de outro fonte:

!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>HTML5 blockquote by pt.oldtoolbag.com</title>
</head>
<body>
<h1>Título 1</h1>
<p>Este será o título1o conteúdo abaixo.</p>
<blockquote>This is a quote</blockquote>
<blockquote cite="https://pt.oldtoolbag.com">Esta é uma citação usando a propriedade cite</blockquote>
</body>
</html
Teste e veja ‹/›

Compatibilidade do navegador

IEFirefoxOperaChromeSafari

Todos os navegadores populares suportam a tag <blockquote>.

Definição e instruções de uso da tag

A tag <blockquote> define uma citação de um outro fonte.

O navegador geralmente alinha o elemento <blockquote>.

Avisos e Atenção

HTML <blockquote> element is located within the <body> tag.
For short inline quotes, use<q>tag.
Most browsers will display the text within the <blockquote> tag as indented text, but you can use CSS to change this behavior.

HTML 4.01 and HTML5Differences between

In HTML 4.01 In, the <blockquote> tag defines a long quote.

In HTML5 In, the <blockquote> tag defines a block quote from another source.

Differences between HTML and XHTML

Note:If you want to validate the page as XHTML, then the <blockquote> element must contain block-level elements, such as:

<blockquote>
<p>This is a long quote, this is a long quote. Your trusted resource for learning new technologies (oldtoolbag.com)</p>
</blockquote>

Attribute

AttributeValueDescription
citeURLSpecify the source of the reference.

Global attributes

The <blockquote> tag supports Global attributes of HTML.

event attributes

The <blockquote> tag supports HTML event attributes.