标签导航:

如何在html中显示一个解释引用/删除/插入文本的url?

cite属性允许您添加网址并解释删除或插入文本的原因。

示例

您可以尝试运行以下代码来实现引用属性 -

<!DOCTYPE html>
<html>
   <body>
      <h3>Define WordPress</h3>
      <q cite = "https://wordpress.org/">
      WordPress is open source software you can use to create a beautiful website, blog, or app.</q>
   </body>
</html>