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>