HTML CSS examples for HTML Tag:blockquote
The cite attribute sets the source of a quotation.
The cite attribute does not render as anything special in any of the major browsers.
Value | Description |
---|---|
URL | The source of the quotation. |
A section that is quoted from another source:
<!DOCTYPE html> <html> <body> <h1>About WWF</h1> <p>Here is a quote:</p> <blockquote cite="http://java2s.com"> This is a test. This is a test. This is a test. This is a test. </blockquote> </body><!--from w w w . ja v a 2s . co m--> </html>