我们使用标签,在HTML中添加短引号。如果我们想引用多行,请使用
标签。我们还可以使用
标签内的cite属性以URL形式指示引用的来源。语法
以下是
标记的语法。<q>The content to be quoted</q>登录后复制示例
以下是
标签的示例程序。<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for <q>Delhi Land and Finance</q></p> <p>Delhi Land and Finance is one of the largest commercial real estate developer in India.</p> </body> </html>登录后复制示例
在下面的示例中,我们在
标记内的特定文本上使用了
标记。<!DOCTYPE html> <html> <head> <title>HTML u tag</title> </head> <body> <h1>Welcome to <q> INDIA </q> Kids.</h1> </body> </html>登录后复制使用块引用标签
HTML中的
标签用于显示长引用。语法
以下是
标记的语法。<blockquote>The multiple line content to be quoted </blockquote>登录后复制示例
以下是
标签的示例程序。<!DOCTYPE html> <html> <head> </head> <body> <p>DLF stands for Delhi Land and Finance</p> <blockquote>Delhi Land and Finance is one of the largest commercial real estate developer in India.</blockquote> </body> </html>登录后复制以上是如何在HTML中使用引号?的详细内容。更多信息请关注PHP中文网其他相关文章!