如何在 HTML 中使用 cite 标签标记作品标题?


作品标题可能是书名、歌曲名、画名、电影名等。

我们在 HTML 中使用<cite> 标签来标记作品标题。<cite> 标签表示引用,标签内任何内容都代表页面上特定内容的作品标题。

语法

以下是 <cite> 标签的语法。

<cite> Work title</cite>

示例

以下是 <cite> 标签的示例程序。

<!DOCTYPE html> <html> <head> <title>HTML cite tag</title> </head> <body> <h1>Heading</h1> <p> Learn Java from <cite>Java The Complete Reference</cite> by Herbert Schildt. </p> </body> </html>

示例

以下是 <cite> 标签的另一示例程序。

<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <cite>Delhi Land and Finance</cite></p> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>

示例

以下是 <cite> 标签的另一个示例程序。

<!DOCTYPE html> <html> <head> <title>HTML blockquote tag</title> <style> blockquote { margin-left: 0; } </style> </head> <body> <h1>Drupal official website</h1> <p>Here is a quotation from Drupal’s official website</p> <blockquote cite="http://drupal.org">The Drupal project is open source software. Anyone can download, use, work on, and share it with others. It's built on principles like collaboration, globalism, and innovation.</blockquote> </body> </html>

更新日期: 11-11-2022

133 次浏览

开启您的职业生涯

完成课程即可获得认证

开始
广告