How to specify the source URL of the quote using HTML5 ?
In this article, we will learn how to specify the source URL of the quotation mark using HTML. We perform this task just by using a cite attribute of the <q> element in the document. This property contains the string value which represents the URL of the quotation mark.
Syntax:
<q cite="URL">
Example: Below code illustrates the use of the cite attribute in the <q> tag.
HTML
<!DOCTYPE html> < html > < head > < style > h1, h2 { color: green; font-weight: bold; } </ style > </ head > < body style = "text-align: center" > < h2 >GeeksforGeeks</ h2 > < b > How to specify the source URL of the quote using HTML5 ? </ b > < p > is a good platform for learn and earn. </ p > </ body > </ html > |
Output:
Please Login to comment...