Home >Web Front-end >HTML Tutorial >Introduction to HTML
tag
tag
HTML b8a712a75cab9a5aded02f74998372b4 tag
##All major browsers support the b8a712a75cab9a5aded02f74998372b4 tag. Note: No browser displays the cite attribute correctly. (Recommended learning:
html tutorial)
Definition and usage
##b8a712a75cab9a5aded02f74998372b4 tag defines a block quote.##All text betweenb8a712a75cab9a5aded02f74998372b4 and 1aee16100a65d522474e4de7ff568f4a will be separated from the regular text, often with indentation (increased margins) on the left and right sides , and sometimes italics are used.
In other words, block references have their own space.Tip
Tip:
Please use the q element to mark short quotes.Note:
If you need to validate the page as strict XHTML, the b8a712a75cab9a5aded02f74998372b4 element must contain block-level elementsExample
Mark long quotes:
<html> <body> Here comes a long quotation: <blockquote> This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. This is a long quotation. </blockquote> 请注意,浏览器在 blockquote 元素前后添加了换行,并增加了外边距。 </body> </html>
The above is the detailed content of Introduction to HTML
tag. For more information, please follow other related articles on the PHP Chinese website!