如何在HTML中使用引号?
我们使用标签,在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中使用引号?的详细内容,更多请关注双恒网络其它相关文章!
声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。