如何用 HTML 指定引文?
使用 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>
广告