English | 简体中文 | 繁體中文 | Русский язык | Français | Español | Português | Deutsch | 日本語 | 한국어 | Italiano | بالعربية
The cite attribute specifies the source of the citation, the value of which is a URL enclosed in quotes and pointing to an online document, as well as (if possible) the exact location of the citation in the document.
The cite attribute of the following blockquote element specifies the source of the citation:
!DOCTYPE html <html> <head> <title>HTML: <blockquote> cite attribute - Basic Tutorial Website oldtoolbag.com</title> </head> <body> <h1">HTML Basics</h1"> <blockquote cite="https://www.oldtoolbag.com/html/HyperText Markup Language (full name in English: HyperText Markup Language, abbreviation: HTML) is a standard markup language used to create web pages. Here, you will master some important concepts and syntax, learn how to use HTML for text, how to create hyperlinks, and how to use HTML to make a web page. HTML is easy to learn, just follow (oldtoolbag.com) Learn the basic HTML tutorial! I believe you can learn it quickly.</blockquote> </html>Test it out ‹/›
IEFirefoxOperaChromeSafari
All major browsers do not support the cite attribute. However, search engines may use this attribute to obtain more information about the quote.
The cite attribute specifies the source of the quote.
Tip: The value of this attribute is a URL enclosed in quotes that points to an online document, and (if possible) the exact location referenced in that document.
<blockquote cite="URL">
Value | Description |
---|---|
URL | The URL of the source being referenced. Possible values:
|