Open In App
Related Articles

HTML | <q> cite Attribute

Improve Article
Improve
Save Article
Save
Like Article
Like

The <q> cite Attribute in HTML is used to specify the source URL of the quotation.

Syntax:

<q cite="URL">

Attribute Values: It contains single value URL which is used to specify the URL of the quotation.
The possible value of the URL are:

  • Absolute URL: It is used to point out other websites (like cite =”http://www.w3schools.com”)
  • Relative URL: It is used to point out the page within the website. (like cite=”geeks.htm”).

Example:




<!DOCTYPE html>
<html
    <head
        <title>HTML q cite Attribute</title
    </head
      
    <body style="text-align:center;"
          
        <h1>GeeksForGeeks</h1>
          
        <h2>
            HTML <q>cite Attribute 
        </h2>
          
        <p>
            <q cite="https://www.geeksforgeeks.org">
                GeeksforGeeks
            </q
            A computer science portal for geeks 
        </p
    </body
</html>                    


Output:

Supported Browsers: The browser supported by <q> cite Attribute are listed below:

  • Google Chrome
  • Internet Explorer
  • Firefox
  • Opera
  • Safari
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape, GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out - check it out now!

Last Updated : 30 Apr, 2019
Like Article
Save Article
Previous
Next
Similar Reads
Complete Tutorials