How to specify citation in HTML?


Use the <cite> tag in HTML to specify citation. Cite can be defined as the title of a work. You can try to run the following code to implement <cite> tag for adding citation −

Example

<!DOCTYPE html>
<html>
   <head>
      <title>HTML cite Tag</title>
   </head>
   <body>
      <p>The learning content can be referred from <cite>Data Structures
       & Algorithms in Java</cite><p>
   </body>
</html>

Updated on: 03-Mar-2020

110 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements