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: 2020-03-03T06:48:41+05:30

211 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements