Open In App

How to specify the source URL of the quote using HTML5 ?

Last Updated : 21 May, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

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>
      <q cite="https://www.geeksforgeeks.org"> GeeksforGeeks </q>
      is a good platform for learn and earn.
    </p>
  </body>
</html>


Output:


Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads