我們使用標簽,在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中使用引號?的詳細內容,更多請關注www.92cms.cn其它相關文章!