在HTML中使用<cite>标记指定引用。引用可以定义为作品的标题。您可以尝试运行以下代码来实现<cite>标记以添加引文-
<!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>